[SCM] live-build branch, upstream, updated. upstream/3.0_a17-1-gd58d909

Daniel Baumann daniel at debian.org
Fri Jun 3 10:01:35 UTC 2011


The following commit has been merged in the upstream branch:
commit d58d90928323cedfc0d1d541c54a713637985c54
Author: Daniel Baumann <daniel at debian.org>
Date:   Fri Jun 3 12:01:13 2011 +0200

    Adding upstream version 3.0~a18.

diff --git a/Makefile b/Makefile
index 3537006..d694537 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 
 SHELL := sh -e
 
-LANGUAGES = en $(shell cd manpages/po && ls)
+LANGUAGES = $(shell cd manpages/po && ls)
 
 SCRIPTS = cgi/* functions/* examples/*/*.sh examples/auto/* scripts/*.sh scripts/*/*
 
@@ -41,7 +41,7 @@ build:
 install:
 	# Installing shared data
 	mkdir -p $(DESTDIR)/usr/share/live/build
-	cp -r cgi data examples functions scripts hooks includes lists repositories templates $(DESTDIR)/usr/share/live/build
+	cp -r cgi data examples functions scripts includes lists repositories templates $(DESTDIR)/usr/share/live/build
 
 	# Installing executables
 	mkdir -p $(DESTDIR)/usr/bin
diff --git a/VERSION b/VERSION
index 31cfe14..2b538e2 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0~a17
+3.0~a18
diff --git a/hooks/debian-live-pxe-server b/examples/hooks/all_chroot_debian-live-pxe-server.sh
similarity index 100%
rename from hooks/debian-live-pxe-server
rename to examples/hooks/all_chroot_debian-live-pxe-server.sh
diff --git a/hooks/minimal b/examples/hooks/all_chroot_minimal.sh
similarity index 100%
rename from hooks/minimal
rename to examples/hooks/all_chroot_minimal.sh
diff --git a/hooks/stripped b/examples/hooks/all_chroot_stripped.sh
similarity index 100%
rename from hooks/stripped
rename to examples/hooks/all_chroot_stripped.sh
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 2aa677f..9463451 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -289,9 +289,6 @@ Set_defaults ()
 	# Exclude packages on base
 	# LB_BOOTSTRAP_EXCLUDE
 
-	# Setting distribution configuration value
-	# LB_BOOTSTRAP_CONFIG
-
 	# Setting flavour value
 	case "${LB_BOOTSTRAP}" in
 		cdebootstrap)
@@ -615,7 +612,7 @@ Set_defaults ()
 		i386)
 			case "${LB_MODE}" in
 				progress)
-					LB_LINUX_FLAVOURS="686"
+					LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-686}"
 					;;
 
 				ubuntu)
@@ -725,54 +722,57 @@ Set_defaults ()
 	esac
 
 	# Setting tasks string
-	for LIST in ${LB_PACKAGE_LISTS}
-	do
-		case "${LIST}" in
-			stripped|minimal)
-				LB_APT="apt-get"
-				;;
+	if [ -z "${LB_TASKS}" ] || [ "${LB_TASKS}" != "none" ]
+	then
+		for LIST in ${LB_PACKAGE_LISTS}
+		do
+			case "${LIST}" in
+				stripped|minimal)
+					LB_APT="apt-get"
+					;;
 
-			standard)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||') standard"
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||') standard"
-				;;
+				standard)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||') standard"
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||') standard"
+					;;
 
-			rescue)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue"
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|rescue||') standard rescue"
-				;;
+				rescue)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue"
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|rescue||') standard rescue"
+					;;
 
-			gnome-desktop)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|gnome-desktop||') standard-x11"
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||' -e 's|laptop||') standard gnome-desktop desktop laptop"
-				LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
-				;;
+				gnome-desktop)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|gnome-desktop||') standard-x11"
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||' -e 's|laptop||') standard gnome-desktop desktop laptop"
+					LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
+					;;
 
-			kde-desktop)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|kde-desktop||') standard-x11"
+				kde-desktop)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|kde-desktop||') standard-x11"
 
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|kde-desktop||' -e 's|desktop||' -e 's|laptop||') standard kde-desktop desktop laptop"
-				LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
-				;;
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|kde-desktop||' -e 's|desktop||' -e 's|laptop||') standard kde-desktop desktop laptop"
+					LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
+					;;
 
-			lxde-desktop)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|lxde-desktop||') standard-x11"
+				lxde-desktop)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|lxde-desktop||') standard-x11"
 
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|lxde-desktop||' -e 's|desktop||' -e 's|laptop||') standard lxde-desktop desktop laptop"
-				LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
-				;;
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|lxde-desktop||' -e 's|desktop||' -e 's|laptop||') standard lxde-desktop desktop laptop"
+					LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
+					;;
 
-			xfce-desktop)
-				LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|xfce-desktop||') standard-x11"
+				xfce-desktop)
+					LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|xfce-desktop||') standard-x11"
 
-				LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|xfce-desktop||' -e 's|desktop||' -e 's|laptop||') standard xfce-desktop desktop laptop"
-				LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
-				;;
-		esac
-	done
+					LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|xfce-desktop||' -e 's|desktop||' -e 's|laptop||') standard xfce-desktop desktop laptop"
+					LB_PACKAGES="$(echo ${LB_PACKAGES} | sed -e 's|debian-installer-launcher||') debian-installer-launcher"
+					;;
+			esac
+		done
 
-	LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|  ||g')"
-	LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|  ||g')"
+		LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|  ||g')"
+		LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|  ||g')"
+	fi
 
 	# Setting security updates option
 	case "${LB_DISTRIBUTION}" in
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index 58ee25b..35874ff 100644
--- a/manpages/de/lb.de.1
+++ b/manpages/de/lb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb\fP \- wrapper for live\-build programs
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index d5759d3..e55f049 100644
--- a/manpages/de/lb_binary.de.1
+++ b/manpages/de/lb_binary.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index eda53aa..f2d5252 100644
--- a/manpages/de/lb_binary_checksums.de.1
+++ b/manpages/de/lb_binary_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index 1eec6db..7c2996e 100644
--- a/manpages/de/lb_binary_chroot.de.1
+++ b/manpages/de/lb_binary_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index d9f0dff..5742b29 100644
--- a/manpages/de/lb_binary_debian-installer.de.1
+++ b/manpages/de/lb_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 5052b8f..d11ca0a 100644
--- a/manpages/de/lb_binary_disk.de.1
+++ b/manpages/de/lb_binary_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index b3ace93..558cf6f 100644
--- a/manpages/de/lb_binary_grub.de.1
+++ b/manpages/de/lb_binary_grub.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index e1650b8..7f22415 100644
--- a/manpages/de/lb_binary_grub2.de.1
+++ b/manpages/de/lb_binary_grub2.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index 9ddf172..20a9cf9 100644
--- a/manpages/de/lb_binary_includes.de.1
+++ b/manpages/de/lb_binary_includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index dbb12ca..1b4ac57 100644
--- a/manpages/de/lb_binary_iso.de.1
+++ b/manpages/de/lb_binary_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index dfae6d6..3cb7ee0 100644
--- a/manpages/de/lb_binary_linux-image.de.1
+++ b/manpages/de/lb_binary_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-hooks.de.1 b/manpages/de/lb_binary_local-hooks.de.1
index 27d4358..7a5fe48 100644
--- a/manpages/de/lb_binary_local-hooks.de.1
+++ b/manpages/de/lb_binary_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index 2505df5..24f5884 100644
--- a/manpages/de/lb_binary_local-includes.de.1
+++ b/manpages/de/lb_binary_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-packagelists.de.1 b/manpages/de/lb_binary_local-packagelists.de.1
index a503813..a179652 100644
--- a/manpages/de/lb_binary_local-packagelists.de.1
+++ b/manpages/de/lb_binary_local-packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-packagelists\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 1929e3e..770dc2e 100644
--- a/manpages/de/lb_binary_manifest.de.1
+++ b/manpages/de/lb_binary_manifest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index c023c0c..5ea5595 100644
--- a/manpages/de/lb_binary_memtest.de.1
+++ b/manpages/de/lb_binary_memtest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1
index bc52c74..538f80f 100644
--- a/manpages/de/lb_binary_net.de.1
+++ b/manpages/de/lb_binary_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index 73c7ae2..19d533e 100644
--- a/manpages/de/lb_binary_rootfs.de.1
+++ b/manpages/de/lb_binary_rootfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index cd45726..cab1f88 100644
--- a/manpages/de/lb_binary_silo.de.1
+++ b/manpages/de/lb_binary_silo.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index 8b43e19..72b9e02 100644
--- a/manpages/de/lb_binary_syslinux.de.1
+++ b/manpages/de/lb_binary_syslinux.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index f08835e..56fa1e0 100644
--- a/manpages/de/lb_binary_tar.de.1
+++ b/manpages/de/lb_binary_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_usb.de.1 b/manpages/de/lb_binary_usb.de.1
index 07598c6..d150957 100644
--- a/manpages/de/lb_binary_usb.de.1
+++ b/manpages/de/lb_binary_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_usb\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index 0e7ec26..bdd146b 100644
--- a/manpages/de/lb_binary_virtual-hdd.de.1
+++ b/manpages/de/lb_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index 0552299..5bed58b 100644
--- a/manpages/de/lb_binary_win32-loader.de.1
+++ b/manpages/de/lb_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index 1d38492..17fac7c 100644
--- a/manpages/de/lb_binary_yaboot.de.1
+++ b/manpages/de/lb_binary_yaboot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 1b87e34..f631748 100644
--- a/manpages/de/lb_bootstrap.de.1
+++ b/manpages/de/lb_bootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index 6efee94..1107128 100644
--- a/manpages/de/lb_bootstrap_cache.de.1
+++ b/manpages/de/lb_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index e68b944..0017b88 100644
--- a/manpages/de/lb_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lb_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index f7a4cd7..567854c 100644
--- a/manpages/de/lb_bootstrap_copy.de.1
+++ b/manpages/de/lb_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index d41fbab..cdec926 100644
--- a/manpages/de/lb_bootstrap_debootstrap.de.1
+++ b/manpages/de/lb_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 88b6fe5..c9f6717 100644
--- a/manpages/de/lb_build.de.1
+++ b/manpages/de/lb_build.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index 2661084..5326206 100644
--- a/manpages/de/lb_chroot.de.1
+++ b/manpages/de/lb_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 94482fb..0b5e92a 100644
--- a/manpages/de/lb_chroot_apt.de.1
+++ b/manpages/de/lb_chroot_apt.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index 1f7e747..45afd2f 100644
--- a/manpages/de/lb_chroot_cache.de.1
+++ b/manpages/de/lb_chroot_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index 3955d14..eed66a2 100644
--- a/manpages/de/lb_chroot_debianchroot.de.1
+++ b/manpages/de/lb_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index 24904c5..6de9d85 100644
--- a/manpages/de/lb_chroot_devpts.de.1
+++ b/manpages/de/lb_chroot_devpts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index 949a302..6322dfe 100644
--- a/manpages/de/lb_chroot_dpkg.de.1
+++ b/manpages/de/lb_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index d0a5ccb..6d5d908 100644
--- a/manpages/de/lb_chroot_hacks.de.1
+++ b/manpages/de/lb_chroot_hacks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
deleted file mode 100644
index c00b669..0000000
--- a/manpages/de/lb_chroot_hooks.de.1
+++ /dev/null
@@ -1,47 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_hooks\fP \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_hooks\fP [\fIlive\-build options\fP]
-
-.SH DESCRIPTION
-\fBlb chroot_hooks\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7),
-the Debian Live tool suite.
-.PP
-
-.\" FIXME
-.SH OPTIONS
-\fBlb chroot_hooks\fP has no specific options but understands all generic
-live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
-live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP \fBn/a\fP 4
-
-.SH "SEE ALSO"
-\fIlive\-build\fP(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found
-on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in
-the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
-writing a mail to the Debian Live mailing list at
-<\fIdebian\-live at lists.debian.org\fP>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fP> for
-the Debian project.
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index 6856b9d..dc8557b 100644
--- a/manpages/de/lb_chroot_hostname.de.1
+++ b/manpages/de/lb_chroot_hostname.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index b20f7f8..9b77cba 100644
--- a/manpages/de/lb_chroot_hosts.de.1
+++ b/manpages/de/lb_chroot_hosts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index ac01d3c..e638a4f 100644
--- a/manpages/de/lb_chroot_install-packages.de.1
+++ b/manpages/de/lb_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index b059227..6834b65 100644
--- a/manpages/de/lb_chroot_interactive.de.1
+++ b/manpages/de/lb_chroot_interactive.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index 31eda98..5790164 100644
--- a/manpages/de/lb_chroot_linux-image.de.1
+++ b/manpages/de/lb_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-hooks.de.1 b/manpages/de/lb_chroot_local-hooks.de.1
index 6ab78d5..a509b94 100644
--- a/manpages/de/lb_chroot_local-hooks.de.1
+++ b/manpages/de/lb_chroot_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-hooks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index f7ebb61..6e4c0f2 100644
--- a/manpages/de/lb_chroot_local-includes.de.1
+++ b/manpages/de/lb_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-packagelists.de.1 b/manpages/de/lb_chroot_local-packagelists.de.1
index bcaa024..9d896fc 100644
--- a/manpages/de/lb_chroot_local-packagelists.de.1
+++ b/manpages/de/lb_chroot_local-packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-packages.de.1 b/manpages/de/lb_chroot_local-packages.de.1
index a0ae05b..a447aab 100644
--- a/manpages/de/lb_chroot_local-packages.de.1
+++ b/manpages/de/lb_chroot_local-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index 8a6d789..cc3eea4 100644
--- a/manpages/de/lb_chroot_local-patches.de.1
+++ b/manpages/de/lb_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index 0130c23..ae78051 100644
--- a/manpages/de/lb_chroot_local-preseed.de.1
+++ b/manpages/de/lb_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_localization.de.1 b/manpages/de/lb_chroot_localization.de.1
index 421c2e6..df51858 100644
--- a/manpages/de/lb_chroot_localization.de.1
+++ b/manpages/de/lb_chroot_localization.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_localization\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1
index dc3f454..4597ca6 100644
--- a/manpages/de/lb_chroot_packagelists.de.1
+++ b/manpages/de/lb_chroot_packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index a2a84e5..b56dbdb 100644
--- a/manpages/de/lb_chroot_packages.de.1
+++ b/manpages/de/lb_chroot_packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_preseed.de.1 b/manpages/de/lb_chroot_preseed.de.1
index 1099699..1fb431d 100644
--- a/manpages/de/lb_chroot_preseed.de.1
+++ b/manpages/de/lb_chroot_preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index 3fe273a..1f0548a 100644
--- a/manpages/de/lb_chroot_proc.de.1
+++ b/manpages/de/lb_chroot_proc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index 3e8cc35..fb6eef2 100644
--- a/manpages/de/lb_chroot_resolv.de.1
+++ b/manpages/de/lb_chroot_resolv.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index 8e3cfa6..fdc4403 100644
--- a/manpages/de/lb_chroot_selinuxfs.de.1
+++ b/manpages/de/lb_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sources.de.1 b/manpages/de/lb_chroot_sources.de.1
index d0fae92..f9fd59b 100644
--- a/manpages/de/lb_chroot_sources.de.1
+++ b/manpages/de/lb_chroot_sources.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sources\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index 48ba40f..2286a53 100644
--- a/manpages/de/lb_chroot_sysfs.de.1
+++ b/manpages/de/lb_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index f275adc..7aecc6b 100644
--- a/manpages/de/lb_chroot_sysv-rc.de.1
+++ b/manpages/de/lb_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_tasks.de.1 b/manpages/de/lb_chroot_tasks.de.1
index b76e45e..953f063 100644
--- a/manpages/de/lb_chroot_tasks.de.1
+++ b/manpages/de/lb_chroot_tasks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_tasks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index 21283f5..19c7ab4 100644
--- a/manpages/de/lb_chroot_upstart.de.1
+++ b/manpages/de/lb_chroot_upstart.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index f1132b6..1398939 100644
--- a/manpages/de/lb_clean.de.1
+++ b/manpages/de/lb_clean.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fP \- Clean build directory
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index 9e310b9..5cd33b8 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fP \- Create config directory
@@ -46,8 +46,6 @@
 .br
   [\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy]
 .br
-  [\fB\-\-bootstrap\-config\fP \fIFILE\fP]
-.br
   [\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard]
 .br
   [\fB\-\-bootstrap\-keyring\fP \fIPACKAGE\fP]
@@ -356,11 +354,6 @@ debootstrap. Note that if you set the bootstrap program to copy, then your
 host system is copied. This can be useful if you want to convert/clone your
 existing host system into a live system, however, make sure you do have
 enough free space as this can, depending on your host system, get quite big.
-.IP "\fB\-\-bootstrap\-config\fP \fIFILE\fP" 4
-sets a custom configuration file for the boostrap programm of choice and is
-empty by default. Refere to the documentation of debootstrap or cdebootstrap
-for more information about that. When the bootstrap program is set to copy,
-this has no effect.
 .IP "\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard" 4
 defines if the bootstrap program should bootstrap the standard system (all
 packages of priority required and important, which is the default) or a
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index e9c1802..7f727f7 100644
--- a/manpages/de/lb_local.de.1
+++ b/manpages/de/lb_local.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fP \- wrapper for local live\-build programs
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 03f79db..e337ca9 100644
--- a/manpages/de/lb_source.de.1
+++ b/manpages/de/lb_source.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index 167a5d5..89e59df 100644
--- a/manpages/de/lb_source_checksums.de.1
+++ b/manpages/de/lb_source_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index 4aa4c8b..d5dc2a6 100644
--- a/manpages/de/lb_source_debian-live.de.1
+++ b/manpages/de/lb_source_debian-live.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index 70496f9..a052307 100644
--- a/manpages/de/lb_source_debian.de.1
+++ b/manpages/de/lb_source_debian.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index c282f50..bbf5aa7 100644
--- a/manpages/de/lb_source_disk.de.1
+++ b/manpages/de/lb_source_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index 2b54f5b..10c672c 100644
--- a/manpages/de/lb_source_iso.de.1
+++ b/manpages/de/lb_source_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1
index 19e4c4a..ec985fc 100644
--- a/manpages/de/lb_source_net.de.1
+++ b/manpages/de/lb_source_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index 6687442..81fe1c8 100644
--- a/manpages/de/lb_source_tar.de.1
+++ b/manpages/de/lb_source_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_usb.de.1 b/manpages/de/lb_source_usb.de.1
index f9bffa5..c500c9f 100644
--- a/manpages/de/lb_source_usb.de.1
+++ b/manpages/de/lb_source_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_usb\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index 65777f9..4ab3c88 100644
--- a/manpages/de/lb_source_virtual-hdd.de.1
+++ b/manpages/de/lb_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index cf3a2c0..72e8639 100644
--- a/manpages/de/lb_testroot.de.1
+++ b/manpages/de/lb_testroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fP \- Ensure that a system is built as root
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index 49573f7..1c3bd10 100644
--- a/manpages/de/live-build.de.7
+++ b/manpages/de/live-build.de.7
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 7 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fP \- the Debian Live tool suite
@@ -128,8 +128,6 @@ mount /dev/pts
 manage /sbin/dpkg
 .IP \fBlb_chroot_hacks\fP(1) 4
 execute hacks in chroot
-.IP \fBlb_chroot_hooks\fP(1) 4
-execute hooks in chroot
 .IP \fBlb_chroot_hostname\fP(1) 4
 manage /bin/hostname
 .IP \fBlb_chroot_hosts\fP(1) 4
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index f9398b4..30eb51b 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb\fR \- wrapper for live\-build programs
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index a6a3300..46ce2e4 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1
index ff1cd1b..30144c6 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1
index b1a4754..50e6d33 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1
index d48b126..1e3d56f 100644
--- a/manpages/en/lb_binary_debian-installer.1
+++ b/manpages/en/lb_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1
index a800772..6bbaf00 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index 840dda6..7458043 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1
index cf3e733..6098b44 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index 85e5772..c4b374e 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1
index f12e1ec..f06f817 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1
index a97c720..0de0f5d 100644
--- a/manpages/en/lb_binary_linux-image.1
+++ b/manpages/en/lb_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-hooks.1 b/manpages/en/lb_binary_local-hooks.1
index bac0150..fc75c8e 100644
--- a/manpages/en/lb_binary_local-hooks.1
+++ b/manpages/en/lb_binary_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index 0432316..420bac0 100644
--- a/manpages/en/lb_binary_local-includes.1
+++ b/manpages/en/lb_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-packagelists.1 b/manpages/en/lb_binary_local-packagelists.1
index ca0a7af..fc5fa4e 100644
--- a/manpages/en/lb_binary_local-packagelists.1
+++ b/manpages/en/lb_binary_local-packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local-packagelists\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index b8e53a8..36cc5c0 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1
index d45f9ba..0f62590 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1
index 497cbcf..dbf7992 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1
index fa4efa9..2a67ab7 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1
index b655e09..b14da04 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1
index db06873..98e7dc5 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1
index a188e7c..858bc02 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_usb.1 b/manpages/en/lb_binary_usb.1
index 1d113a9..f4498a5 100644
--- a/manpages/en/lb_binary_usb.1
+++ b/manpages/en/lb_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_usb\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index a30b853..c79cff1 100644
--- a/manpages/en/lb_binary_virtual-hdd.1
+++ b/manpages/en/lb_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1
index 5b5d918..bf930ac 100644
--- a/manpages/en/lb_binary_win32-loader.1
+++ b/manpages/en/lb_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1
index f70e90c..34adb7f 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index 805537f..0f0ad80 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1
index 1803add..c0f7b38 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1
index cbdc7bf..2af3ee9 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1
index eadc52a..f95caad 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1
index ffbe8d7..4672561 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index 3c20b10..2c2080f 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1
index 12d6b4e..3ad5b68 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1
index f11f381..378adf7 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index 46e6bdc..0862cd6 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1
index eef4b25..87b0b22 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1
index dc8749e..128c6fb 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1
index 889ce22..35386eb 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1
index 274ba23..8681f69 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hooks.1 b/manpages/en/lb_chroot_hooks.1
deleted file mode 100644
index 0b44948..0000000
--- a/manpages/en/lb_chroot_hooks.1
+++ /dev/null
@@ -1,33 +0,0 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_hooks\fR \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_hooks\fR [\fIlive\-build options\fR]
-
-.SH DESCRIPTION
-\fBlb chroot_hooks\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
-.PP
-.\" FIXME
-
-.SH OPTIONS
-\fBlb chroot_hooks\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP "\fBn/a\fR" 4
-
-.SH SEE ALSO
-\fIlive\-build\fR(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live at lists.debian.org\fR>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 9495a06..023c46e 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1
index 708e876..3530dae 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1
index 811f300..e758294 100644
--- a/manpages/en/lb_chroot_install-packages.1
+++ b/manpages/en/lb_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1
index 4ce0c06..23bfea8 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1
index 9556a05..af6e21d 100644
--- a/manpages/en/lb_chroot_linux-image.1
+++ b/manpages/en/lb_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-hooks.1 b/manpages/en/lb_chroot_local-hooks.1
index aae1b88..19b70f1 100644
--- a/manpages/en/lb_chroot_local-hooks.1
+++ b/manpages/en/lb_chroot_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 1f56622..e022ef8 100644
--- a/manpages/en/lb_chroot_local-includes.1
+++ b/manpages/en/lb_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-packagelists.1 b/manpages/en/lb_chroot_local-packagelists.1
index 0c085a3..2895757 100644
--- a/manpages/en/lb_chroot_local-packagelists.1
+++ b/manpages/en/lb_chroot_local-packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-packages.1 b/manpages/en/lb_chroot_local-packages.1
index b68139c..1c809a5 100644
--- a/manpages/en/lb_chroot_local-packages.1
+++ b/manpages/en/lb_chroot_local-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index c6a57a7..ab59360 100644
--- a/manpages/en/lb_chroot_local-patches.1
+++ b/manpages/en/lb_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1
index b7f4e5f..af22748 100644
--- a/manpages/en/lb_chroot_local-preseed.1
+++ b/manpages/en/lb_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_localization.1 b/manpages/en/lb_chroot_localization.1
index 0a2451d..85722e5 100644
--- a/manpages/en/lb_chroot_localization.1
+++ b/manpages/en/lb_chroot_localization.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_localization\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1
index 984f876..125ff38 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index 281728d..a2583ec 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_preseed.1 b/manpages/en/lb_chroot_preseed.1
index 284da9e..fa2fc4b 100644
--- a/manpages/en/lb_chroot_preseed.1
+++ b/manpages/en/lb_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index f9d7a3b..919ba42 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1
index 4bd48bf..10d4674 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1
index dec71ae..e8e502a 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sources.1 b/manpages/en/lb_chroot_sources.1
index 1d63815..4d7ff21 100644
--- a/manpages/en/lb_chroot_sources.1
+++ b/manpages/en/lb_chroot_sources.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sources\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index 0a0b609..6f9dd98 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1
index 71d2fcf..1927def 100644
--- a/manpages/en/lb_chroot_sysv-rc.1
+++ b/manpages/en/lb_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_tasks.1 b/manpages/en/lb_chroot_tasks.1
index 550fc34..238cbd1 100644
--- a/manpages/en/lb_chroot_tasks.1
+++ b/manpages/en/lb_chroot_tasks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_tasks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index 86f30be..8e2376a 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index 0cc58b3..05a066c 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fR \- Clean build directory
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index 88fcc9b..d73ff0e 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fR \- Create config directory
@@ -41,8 +41,6 @@
 .br
 	[\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap|copy]
 .br
-	[\fB\-\-bootstrap\-config\fR \fIFILE\fR]
-.br
 	[\-f|\fB\-\-bootstrap\-flavour\fR minimal|standard]
 .br
 	[\fB\-\-bootstrap\-keyring\fR \fIPACKAGE\fR]
@@ -289,8 +287,6 @@ sets boot parameters specific to debian\-live. A complete list of boot parameter
 defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-build does not support them yet. \fBlb config\fR will fail to create such a not yet supported configuration and give a explanation about it. For usb\-hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc.
 .IP "\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap|copy" 4
 defines which program is used to bootstrap the debian chroot, default is debootstrap. Note that if you set the bootstrap program to copy, then your host system is copied. This can be useful if you want to convert/clone your existing host system into a live system, however, make sure you do have enough free space as this can, depending on your host system, get quite big.
-.IP "\fB\-\-bootstrap\-config\fR \fIFILE\fR" 4
-sets a custom configuration file for the boostrap programm of choice and is empty by default. Refere to the documentation of debootstrap or cdebootstrap for more information about that. When the bootstrap program is set to copy, this has no effect.
 .IP "\-f|\fB\-\-bootstrap\-flavour\fR minimal|standard" 4
 defines if the bootstrap program should bootstrap the standard system (all packages of priority required and important, which is the default) or a minimal system (only packages of priority required, plus apt).
 .IP "\fB\-\-bootstrap\-keyring\fR \fIPACKAGE\fR" 4
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index aa3d89b..6374ffe 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fR \- wrapper for local live\-build programs
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index 9669529..70848ba 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1
index 4a97de2..3550a42 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1
index 5b6f58b..fb99472 100644
--- a/manpages/en/lb_source_debian-live.1
+++ b/manpages/en/lb_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1
index 6e6e0ff..1523d14 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1
index 0cd2aca..de133ba 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index 8b86907..c4e4498 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1
index 4308df8..0087f76 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index 0de8730..9a00fd1 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_usb.1 b/manpages/en/lb_source_usb.1
index c33b5c2..17b3749 100644
--- a/manpages/en/lb_source_usb.1
+++ b/manpages/en/lb_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_usb\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index 3484153..d266722 100644
--- a/manpages/en/lb_source_virtual-hdd.1
+++ b/manpages/en/lb_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index fd459f6..b7e1f46 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7
index e6d3a17..789916d 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2011\-05\-18 3.0~a17 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-06\-03 3.0~a18 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
@@ -105,8 +105,6 @@ mount /dev/pts
 manage /sbin/dpkg
 .IP "\fBlb_chroot_hacks\fR(1)" 4
 execute hacks in chroot
-.IP "\fBlb_chroot_hooks\fR(1)" 4
-execute hooks in chroot
 .IP "\fBlb_chroot_hostname\fR(1)" 4
 manage /bin/hostname
 .IP "\fBlb_chroot_hosts\fR(1)" 4
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index 4f92a9f..f000f84 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -206,18 +206,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -250,18 +250,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -292,23 +292,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -337,23 +336,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -381,23 +379,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -418,23 +415,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -454,23 +450,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -490,23 +485,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -527,23 +521,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -566,23 +559,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -603,23 +595,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -643,23 +634,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -680,23 +670,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index f7d2643..31de7d7 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index 40f04e6..c30ec24 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -706,21 +695,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 69bd886..9abf3c9 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index 301497d..6ef1f20 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index 0bed93a..db7e0d4 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index 6d25ae6..d8a47af 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index 98ddee8..eb03260 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index cb61ad6..94bf0eb 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index 48e10ec..24aab68 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index 868a60b..a482570 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_local-hooks.1.po b/manpages/po/de/lb_binary_local-hooks.1.po
index 0c98236..d801be2 100644
--- a/manpages/po/de/lb_binary_local-hooks.1.po
+++ b/manpages/po/de/lb_binary_local-hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index b6b4aee..89d55e3 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_local-packagelists.1.po b/manpages/po/de/lb_binary_local-packagelists.1.po
index 0be9e4c..35eab26 100644
--- a/manpages/po/de/lb_binary_local-packagelists.1.po
+++ b/manpages/po/de/lb_binary_local-packagelists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index d3e7c44..b87d31b 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index 176c571..5f1c1e2 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index fb8f667..cc4c9d0 100644
--- a/manpages/po/de/lb_binary_net.1.po
+++ b/manpages/po/de/lb_binary_net.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index 2e74fb9..45570c2 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index 87ba004..b5e7114 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 79ca68e..7da0438 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index 84359ef..85f979c 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_usb.1.po b/manpages/po/de/lb_binary_usb.1.po
index 696f888..3da6235 100644
--- a/manpages/po/de/lb_binary_usb.1.po
+++ b/manpages/po/de/lb_binary_usb.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index f7bd41f..577603d 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index 382a6d8..15e24df 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index 26bc813..fbe3989 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index b5309a4..84366a4 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index 639abae..e5931a1 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index bfd770e..66abadc 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 377ce24..bd5b45d 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index c15cc84..a2b5a1c 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index 89dbb9d..4b7ea5b 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 283b19f..8ebb043 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index 89eae89..8de0256 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index 944076d..9db0db2 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 0a3cdd8..3d39e97 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 5cdf5d5..2d5e65e 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index 5190a87..210b023 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index c0a42cd..34a15a1 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
deleted file mode 100644
index b8652fa..0000000
--- a/manpages/po/de/lb_chroot_hooks.1.po
+++ /dev/null
@@ -1,726 +0,0 @@
-# German translations for live-build package
-# Copyright (C) 2011 Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# Automatically generated, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
-"PO-Revision-Date: 2011-01-02 01:05+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ASCII\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-05-18"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a17"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
-#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
-#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
-#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
-#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
-#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
-#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#.  FIXME
-#. type: IP
-#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
-#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
-#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
-#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
-#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
-#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
-#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
-#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
-#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
-#: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
-#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:5
-msgid "B<lb chroot_hooks> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:8
-msgid "B<lb chroot_hooks> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:11
-msgid ""
-"B<lb chroot_hooks> is a low-level command (plumbing) of I<live-build>(7), "
-"the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:16
-msgid ""
-"B<lb chroot_hooks> has no specific options but understands all generic live-"
-"build options. See I<live-build>(7) for a complete list of all generic live-"
-"build options."
-msgstr ""
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index d51d0a4..b14c008 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index e822f8e..24f73c3 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index a9e10ce..9d8a1d6 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index e2ee9ce..df13f23 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index a1526c5..604c594 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-hooks.1.po b/manpages/po/de/lb_chroot_local-hooks.1.po
index bf583d5..281bdde 100644
--- a/manpages/po/de/lb_chroot_local-hooks.1.po
+++ b/manpages/po/de/lb_chroot_local-hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index 998a5c1..2ccce69 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-packagelists.1.po b/manpages/po/de/lb_chroot_local-packagelists.1.po
index 82ea66a..84561e8 100644
--- a/manpages/po/de/lb_chroot_local-packagelists.1.po
+++ b/manpages/po/de/lb_chroot_local-packagelists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-packages.1.po b/manpages/po/de/lb_chroot_local-packages.1.po
index 6db6ef9..adfead0 100644
--- a/manpages/po/de/lb_chroot_local-packages.1.po
+++ b/manpages/po/de/lb_chroot_local-packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index ac7cb0d..020a779 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index 2d156f6..3c99933 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_localization.1.po b/manpages/po/de/lb_chroot_localization.1.po
index 0bbc564..06f439c 100644
--- a/manpages/po/de/lb_chroot_localization.1.po
+++ b/manpages/po/de/lb_chroot_localization.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index 1ae4691..ab66132 100644
--- a/manpages/po/de/lb_chroot_packagelists.1.po
+++ b/manpages/po/de/lb_chroot_packagelists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 0804179..0ad1338 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po
index b7b2dd8..78d13e4 100644
--- a/manpages/po/de/lb_chroot_preseed.1.po
+++ b/manpages/po/de/lb_chroot_preseed.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 51a6525..b58f5ae 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 11c66b8..263d96e 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index a7ab17c..d83db45 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_sources.1.po b/manpages/po/de/lb_chroot_sources.1.po
index 41e01a1..e09554d 100644
--- a/manpages/po/de/lb_chroot_sources.1.po
+++ b/manpages/po/de/lb_chroot_sources.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index 551012e..6d21939 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index e48295b..c946a0f 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_tasks.1.po b/manpages/po/de/lb_chroot_tasks.1.po
index 78d5022..cac14bc 100644
--- a/manpages/po/de/lb_chroot_tasks.1.po
+++ b/manpages/po/de/lb_chroot_tasks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index a2ecaf2..22d1786 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index b7b6a4d..57336ab 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 5c49e35..15b8225 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:12+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -763,513 +752,508 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:45
-msgid "  [B<--bootstrap-config> I<FILE>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:47
 msgid "  [-f|B<--bootstrap-flavour> minimal|standard]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:49
+#: en/lb_config.1:47
 msgid "  [B<--bootstrap-keyring> I<PACKAGE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:51
+#: en/lb_config.1:49
 msgid "  [B<--cache> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:53
+#: en/lb_config.1:51
 msgid "  [B<--cache-indices> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:55
+#: en/lb_config.1:53
 msgid "  [B<--cache-packages> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:57
+#: en/lb_config.1:55
 msgid "  [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:59
+#: en/lb_config.1:57
 msgid "  [B<--checksums> md5|sha1|sha256|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:61
+#: en/lb_config.1:59
 msgid "  [B<--compression> bzip2|gzip|lzip|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:63
+#: en/lb_config.1:61
 msgid "  [B<--build-with-chroot> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:65
+#: en/lb_config.1:63
 msgid "  [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:67
+#: en/lb_config.1:65
 msgid "  [B<--clean>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:69
+#: en/lb_config.1:67
 msgid "  [-c|B<--conffile> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:71
+#: en/lb_config.1:69
 msgid "  [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:73
+#: en/lb_config.1:71
 msgid "  [B<--debconf-nowarnings> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:75
+#: en/lb_config.1:73
 msgid "  [B<--debconf-priority> low|medium|high|critical]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:77
+#: en/lb_config.1:75
 msgid ""
 "  [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:79
+#: en/lb_config.1:77
 msgid "  [B<--debian-installer-distribution> daily|I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:81
+#: en/lb_config.1:79
 msgid "  [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:83
+#: en/lb_config.1:81
 msgid "  [B<--debian-installer-gui> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:85
+#: en/lb_config.1:83
 msgid "  [B<--debug>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:87
+#: en/lb_config.1:85
 msgid "  [-d|B<--distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:89
+#: en/lb_config.1:87
 msgid "  [B<--parent-distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:91
+#: en/lb_config.1:89
 msgid "  [B<--parent-debian-installer-distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:93
+#: en/lb_config.1:91
 msgid "  [B<--dump>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:95
+#: en/lb_config.1:93
 msgid "  [B<--fdisk> fdisk|fdisk.dist]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:97
+#: en/lb_config.1:95
 msgid "  [B<--force>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:99
+#: en/lb_config.1:97
 msgid "  [B<--grub-splash> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:101
+#: en/lb_config.1:99
 msgid "  [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:103
+#: en/lb_config.1:101
 msgid "  [B<--hooks> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:105
+#: en/lb_config.1:103
 msgid "  [B<--hostname> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:107
+#: en/lb_config.1:105
 msgid "  [B<--ignore-system-defaults>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:109
+#: en/lb_config.1:107
 msgid "  [B<--includes> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:111
+#: en/lb_config.1:109
 msgid "  [B<--initramfs> auto|none|live-boot|casper]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:113
+#: en/lb_config.1:111
 msgid "  [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:115
+#: en/lb_config.1:113
 msgid "  [B<--interactive> shell]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:117
+#: en/lb_config.1:115
 msgid "  [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:119
+#: en/lb_config.1:117
 msgid "  [B<--iso-application> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:121
+#: en/lb_config.1:119
 msgid "  [B<--iso-preparer> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:123
+#: en/lb_config.1:121
 msgid "  [B<--iso-publisher> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:125
+#: en/lb_config.1:123
 msgid "  [B<--iso-volume> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:127
+#: en/lb_config.1:125
 msgid "  [B<--jffs2-eraseblock> I<SIZE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:129
+#: en/lb_config.1:127
 msgid "  [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:131
+#: en/lb_config.1:129
 msgid "  [-l|B<--language> I<LANGUAGE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:133
+#: en/lb_config.1:131
 msgid "  [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:135
+#: en/lb_config.1:133
 msgid "  [B<--linux-packages> I<\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:137
+#: en/lb_config.1:135
 msgid "  [B<--losetup> losetup|losetup.orig]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:139
+#: en/lb_config.1:137
 msgid "  [B<--memtest> memtest86+|memtest86|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:141
+#: en/lb_config.1:139
 msgid "  [-m|B<--parent-mirror-bootstrap> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:143
+#: en/lb_config.1:141
 msgid "  [B<--parent-mirror-chroot> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:145
+#: en/lb_config.1:143
 msgid "  [B<--parent-mirror-chroot-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:147
+#: en/lb_config.1:145
 msgid "  [B<--parent-mirror-chroot-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:149
+#: en/lb_config.1:147
 msgid "  [B<--parent-mirror-chroot-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:151
+#: en/lb_config.1:149
 msgid "  [B<--parent-mirror-binary> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:153
+#: en/lb_config.1:151
 msgid "  [B<--parent-mirror-binary-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:155
+#: en/lb_config.1:153
 msgid "  [B<--parent-mirror-binary-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:157
+#: en/lb_config.1:155
 msgid "  [B<--parent-mirror-binary-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:159
+#: en/lb_config.1:157
 msgid "  [B<--parent-mirror-debian-installer> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:161
+#: en/lb_config.1:159
 msgid "  [B<--mirror-bootstrap> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:163
+#: en/lb_config.1:161
 msgid "  [B<--mirror-chroot> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:165
+#: en/lb_config.1:163
 msgid "  [B<--mirror-chroot-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:167
+#: en/lb_config.1:165
 msgid "  [B<--mirror-chroot-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:169
+#: en/lb_config.1:167
 msgid "  [B<--mirror-chroot-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:171
+#: en/lb_config.1:169
 msgid "  [B<--mirror-binary> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:173
+#: en/lb_config.1:171
 msgid "  [B<--mirror-binary-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:175
+#: en/lb_config.1:173
 msgid "  [B<--mirror-binary-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:177
+#: en/lb_config.1:175
 msgid "  [B<--mirror-binary-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:179
+#: en/lb_config.1:177
 msgid "  [B<--mirror-debian-installer> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:181
+#: en/lb_config.1:179
 msgid "  [B<--mode> debian|emdebian|ubuntu]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:183
+#: en/lb_config.1:181
 msgid "  [B<--net-root-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:185
+#: en/lb_config.1:183
 msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:187
+#: en/lb_config.1:185
 msgid "  [B<--net-root-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:189
+#: en/lb_config.1:187
 msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:191
+#: en/lb_config.1:189
 msgid "  [B<--net-cow-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:193
+#: en/lb_config.1:191
 msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:195
+#: en/lb_config.1:193
 msgid "  [B<--net-cow-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:197
+#: en/lb_config.1:195
 msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:199
+#: en/lb_config.1:197
 msgid "  [B<--net-tarball> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:201
+#: en/lb_config.1:199
 msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:203
+#: en/lb_config.1:201
 msgid "  [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:205
+#: en/lb_config.1:203
 msgid "  [B<--quiet>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:207
+#: en/lb_config.1:205
 msgid "  [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:209
+#: en/lb_config.1:207
 msgid "  [B<--root-command> sudo]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:211
+#: en/lb_config.1:209
 msgid "  [B<--use-fakeroot> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:213
+#: en/lb_config.1:211
 msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:215
+#: en/lb_config.1:213
 msgid "  [B<--security> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:217
+#: en/lb_config.1:215
 msgid "  [B<--source> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:219
+#: en/lb_config.1:217
 msgid "  [-s|B<--source-images> iso|net|tar|usb-hdd]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:221
+#: en/lb_config.1:219
 msgid "  [B<--syslinux-splash> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:221
 msgid "  [B<--syslinux-timeout> I<SECONDS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:225
+#: en/lb_config.1:223
 msgid "  [B<--syslinux-menu> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:227
+#: en/lb_config.1:225
 msgid "  [B<--tasksel> apt|aptitude|tasksel]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:227
 msgid "  [B<--tasks> I<TASK>|\"I<TASKS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:231
+#: en/lb_config.1:229
 msgid "  [B<--templates> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:233
+#: en/lb_config.1:231
 msgid "  [B<--virtual-root-size >I<MB>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:233
 msgid "  [B<--volatile> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:237
+#: en/lb_config.1:235
 msgid "  [B<--backports> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:239
+#: en/lb_config.1:237
 msgid "  [B<--exposed-root> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:241
+#: en/lb_config.1:239
 msgid "  [B<--username> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:243
+#: en/lb_config.1:241
 msgid "  [B<--verbose>]"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:244
 msgid "  [B<--win32-loader true|false]>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:249
+#: en/lb_config.1:247
 msgid ""
 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
 "Debian Live tool suite."
@@ -1277,7 +1261,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:250
 msgid ""
 "B<lb config> populates the configuration directory for live-build. By "
 "default, this directory is named 'config' and is created in the current "
@@ -1286,7 +1270,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:255
+#: en/lb_config.1:253
 msgid ""
 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
 "options depending on the setting of other options (e.g. which linux packages "
@@ -1302,7 +1286,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:256
 msgid ""
 "In addition to its specific options B<lb config> understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1311,26 +1295,26 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:258
 #, no-wrap
 msgid "B<--apt> apt|aptitude"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:260
 msgid ""
 "defines if apt-get or aptitude is used to install packages when building the "
 "image. The default is apt."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:260
 #, no-wrap
 msgid "B<--apt-ftp-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:262
 msgid ""
 "sets the ftp proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1338,13 +1322,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:262
 #, no-wrap
 msgid "B<--apt-http-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:264
 msgid ""
 "sets the http proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1352,26 +1336,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:264
 #, no-wrap
 msgid "B<--apt-indices> true|false|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:266
 msgid ""
 "defines if the resulting images should have apt indices or not and defaults "
 "to true. If set to none, no indices are included at all."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:266
 #, no-wrap
 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:268
 msgid ""
 "defines the default options that will be appended to every apt call that is "
 "made inside chroot during the building of the image. By default, this is set "
@@ -1379,13 +1363,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:268
 #, no-wrap
 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:270
 msgid ""
 "defines the default options that will be appended to every aptitude call "
 "that is made inside chroot during building of the image. By default, this is "
@@ -1393,13 +1377,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:270
 #, no-wrap
 msgid "B<--apt-pipeline> I<DEPTH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:272
 msgid ""
 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1411,38 +1395,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:272
 #, no-wrap
 msgid "B<--apt-recommends> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:274
 msgid ""
 "defines if apt should install recommended packages automatically. By "
 "default, this is true except in emdebian mode."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:274
 #, no-wrap
 msgid "B<--apt-secure> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:276
 msgid ""
 "defines if apt should check repository signatures. This is true by default."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:276
 #, no-wrap
 msgid "-a|B<--architectures> I<ARCHITECTURE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:278
 msgid ""
 "defines the architecture of the to be build image. By default, this is set "
 "to the host architecture. Note that you cannot crossbuild for another "
@@ -1453,13 +1437,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:278
 #, no-wrap
 msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:280
 msgid ""
 "defines the image type to build. By default, for images using syslinux this "
 "is set to iso-hybrid to build CD/DVD images that may also be used like usb-"
@@ -1467,13 +1451,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:280
 #, no-wrap
 msgid "B<--binary-filesystem> fat16|fat32|ext2"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:282
 msgid ""
 "defines the filesystem to be used in the image type. This only has an effect "
 "if the selected binary image type does allow to choose a filesystem. For "
@@ -1486,24 +1470,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:282
 #, no-wrap
 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:284
 msgid "sets boot parameters specific to debian-installer, if included."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:284
 #, no-wrap
 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:286
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
 "parameters can be found, for etch, in the manpage of casper, for all other "
@@ -1512,13 +1496,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:286
 #, no-wrap
 msgid "B<--bootloader> grub|syslinux|yaboot"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:288
 msgid ""
 "defines which bootloader is beeing used in the generated image. This has "
 "only an effect if the selected binary image type does allow to choose the "
@@ -1531,13 +1515,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:288
 #, no-wrap
 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:290
 msgid ""
 "defines which program is used to bootstrap the debian chroot, default is "
 "debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1547,28 +1531,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:292
-#, no-wrap
-msgid "B<--bootstrap-config> I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:294
-msgid ""
-"sets a custom configuration file for the boostrap programm of choice and is "
-"empty by default. Refere to the documentation of debootstrap or cdebootstrap "
-"for more information about that. When the bootstrap program is set to copy, "
-"this has no effect."
-msgstr ""
-
-#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:290
 #, no-wrap
 msgid "-f|B<--bootstrap-flavour> minimal|standard"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:292
 msgid ""
 "defines if the bootstrap program should bootstrap the standard system (all "
 "packages of priority required and important, which is the default) or a "
@@ -1576,39 +1545,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:292
 #, no-wrap
 msgid "B<--bootstrap-keyring> I<PACKAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:294
 msgid ""
 "sets the archive keyring package to be used. Default is debian-archive-"
 "keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:294
 #, no-wrap
 msgid "B<--cache> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:296
 msgid ""
 "defines globally if any cache should be used at all. Different caches can be "
 "controled through the their own options."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:296
 #, no-wrap
 msgid "B<--cache-indices> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:298
 msgid ""
 "defines if downloaded package indices and lists should be cached which is "
 "false by default. Enabling it would allow to rebuild an image completely "
@@ -1616,13 +1585,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:298
 #, no-wrap
 msgid "B<--cache-packages> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:300
 msgid ""
 "defines if downloaded packages files should be cached which is true by "
 "default. Disabling it does save space consumtion in your build directory, "
@@ -1633,13 +1602,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:300
 #, no-wrap
 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:302
 msgid ""
 "sets which stages should be cached. By default set to bootstrap. As an "
 "exception to the normal stage names, also rootfs can be used here which does "
@@ -1649,13 +1618,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:302
 #, no-wrap
 msgid "B<--checksums> md5|sha1|sha256|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:304
 msgid ""
 "defines if the binary image should contain a file called md5sums.txt, "
 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1667,26 +1636,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:304
 #, no-wrap
 msgid "B<--compression> bzip2|gzip|lzip|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:306
 msgid ""
 "defines the compression program to be used to compress tarballs. Defaults to "
 "gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:306
 #, no-wrap
 msgid "B<--build-with-chroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:308
 msgid ""
 "defines whetever live-build should use the tools from within the chroot to "
 "build the binary image or not by using and including the host systems tools. "
@@ -1701,13 +1670,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:308
 #, no-wrap
 msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:310
 msgid ""
 "defines which filesystem type should be used for the root filesystem image. "
 "If you use plain, then no filesystem image is created and the root "
@@ -1718,39 +1687,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:310
 #, no-wrap
 msgid "B<--clean>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:312
 msgid ""
 "minimizes config directory by automatically removing unused and thus empty "
 "subdirectories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:312
 #, no-wrap
 msgid "-c|B<--conffile> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:314
 msgid ""
 "using a user specified alternative configuration file in addition to the "
 "normally used one in the config directory."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:314
 #, no-wrap
 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:316
 msgid ""
 "defines what value the debconf frontend should be set to inside the chroot. "
 "Note that setting it to anything by noninteractive, which is the default, "
@@ -1758,13 +1727,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:316
 #, no-wrap
 msgid "B<--debconf-nowarnings> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:318
 msgid ""
 "defines if warnings of debconf should be displayed or not. Warnings from "
 "debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1772,13 +1741,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:318
 #, no-wrap
 msgid "B<--debconf-priority> low|medium|high|critical"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:320
 msgid ""
 "defines what value the debconf priority shoul dbe set to inside the chroot. "
 "By default, it is set to critical, which means that almost no questions are "
@@ -1787,13 +1756,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:320
 #, no-wrap
 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:322
 msgid ""
 "defines which type, if any, of the debian-installer should be included in "
 "the resulting binary image. By default, no installer is included. All "
@@ -1805,13 +1774,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:322
 #, no-wrap
 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:324
 msgid ""
 "defines the distribution where the debian-installer files should be taken "
 "out from. Normally, this should be set to the same distribution as the live "
@@ -1820,26 +1789,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:324
 #, no-wrap
 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:326
 msgid ""
 "sets the filename or URL for an optionally used and included preseeding file "
 "for debian-installer."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:326
 #, no-wrap
 msgid "B<--debian-installer-gui> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:328
 msgid ""
 "defines if the debian-installer graphical GTK interface should be true or "
 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1847,60 +1816,60 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:330
 msgid "turn on debugging informational messages."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:330
 #, no-wrap
 msgid "-d|B<--distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:332
 msgid "defines the distribution of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:332
 #, no-wrap
 msgid "-d|B<--parent-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:334
 msgid ""
 "defines the parent distribution for derivatives of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:334
 #, no-wrap
 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:336
 msgid ""
 "defines the parent debian-installer distribution for derivatives of the "
 "resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:336
 #, no-wrap
 msgid "B<--dump>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:338
 msgid ""
 "prepares a report of the currently present live system configuration and the "
 "version of live-build used. This is useful to provide if you submit bug "
@@ -1909,26 +1878,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:338
 #, no-wrap
 msgid "B<--fdisk> fdisk|fdisk.dist"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:340
 msgid ""
 "sets the filename of the fdisk binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:342
 msgid ""
 "forces re-execution of already run stages. Use only if you know what you are "
 "doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1936,26 +1905,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:342
 #, no-wrap
 msgid "B<--grub-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:344
 msgid ""
 "defines the name of an optional to be included splash screen graphic for the "
 "grub bootloader."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:344
 #, no-wrap
 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:346
 msgid ""
 "defines the default options that will be appended to (almost) every gzip "
 "call during the building of the image. By default, this is set to --best to "
@@ -1964,13 +1933,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:346
 #, no-wrap
 msgid "B<--hooks> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:348
 msgid ""
 "defines which hooks available in /usr/share/live/build/examples/hooks should "
 "be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1978,24 +1947,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:348
 #, no-wrap
 msgid "B<--hostname> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:350
 msgid "sets the hostname of the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:350
 #, no-wrap
 msgid "B<--ignore-system-defaults>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:352
 msgid ""
 "B<lb config> by default reads system defaults from /etc/live/build.conf and /"
 "etc/live/build.d when generating a new live system config directory. This is "
@@ -2004,13 +1973,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:352
 #, no-wrap
 msgid "B<--includes> I<PATH|none>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:354
 msgid ""
 "sets the path to the includes that live-build is going to use, e.g. "
 "additional minimal documentation that you want to have on all live systems. "
@@ -2019,13 +1988,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:354
 #, no-wrap
 msgid "B<--initramfs> auto|none|live-boot|casper"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:356
 msgid ""
 "sets the name of package that contains the live system specific initramfs "
 "modification. By default, auto is used, which means that at build time of "
@@ -2036,13 +2005,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:356
 #, no-wrap
 msgid "B<--interactive> shell"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:358
 msgid ""
 "defines if after the chroot stage and before the beginning of the binary "
 "stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2056,24 +2025,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:358
 #, no-wrap
 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:360
 msgid "defines options to pass to isohybrid."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:360
 #, no-wrap
 msgid "B<--iso-application> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:362
 msgid ""
 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
 "defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2081,13 +2050,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:362
 #, no-wrap
 msgid "B<--iso-preparer> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:364
 msgid ""
 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2096,13 +2065,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:364
 #, no-wrap
 msgid "B<--iso-publisher> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:366
 msgid ""
 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
 "default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2111,13 +2080,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:366
 #, no-wrap
 msgid "B<--iso-volume> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:368
 msgid ""
 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2126,13 +2095,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:368
 #, no-wrap
 msgid "B<--jffs2-eraseblock> I<SIZE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:370
 msgid ""
 "sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
 "filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2142,26 +2111,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:370
 #, no-wrap
 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:372
 msgid ""
 "sets the keyring package or additional keyring packages. By default this is "
 "set to debian-archive-keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:372
 #, no-wrap
 msgid "-l|B<--language> I<LANGUAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:374
 msgid ""
 "sets the language of a live system by installing l10n related packages. It "
 "doesn't enable generation of the correct locales through setting the right "
@@ -2169,26 +2138,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:374
 #, no-wrap
 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:376
 msgid ""
 "sets the kernel flavours to be installed. Note that in case you specify more "
 "than that the first will be configured the default kernel that gets booted."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:376
 #, no-wrap
 msgid "B<--linux-packages> \"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:378
 msgid ""
 "sets the internal name of the kernel packages naming scheme. If you use "
 "debian kernel packages, you will not have to adjust it. If you decide to use "
@@ -2202,26 +2171,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:378
 #, no-wrap
 msgid "B<--losetup> losetup|losetup.orig"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:380
 msgid ""
 "sets the filename of the losetup binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:380
 #, no-wrap
 msgid "B<--memtest> memtest86+|memtest86|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:382
 msgid ""
 "defines if memtest, memtest86+ or no memory tester at all should be included "
 "as secondary bootloader configuration. This is only available on amd64 and "
@@ -2229,13 +2198,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:382
 #, no-wrap
 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:384
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2243,13 +2212,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:384
 #, no-wrap
 msgid "B<--parent-mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:386
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages in order to build the live system. By default, this is set to "
@@ -2257,13 +2226,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:386
 #, no-wrap
 msgid "B<--parent-mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:388
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages in order to build the live system. By default, this "
@@ -2271,13 +2240,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:388
 #, no-wrap
 msgid "B<--parent-mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:390
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages in order to build the live system. By default, this is set to "
@@ -2285,13 +2254,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:390
 #, no-wrap
 msgid "B<--parent-mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:392
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages in order to build the live system. By default, this points "
@@ -2299,13 +2268,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:392
 #, no-wrap
 msgid "B<--parent-mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:394
 msgid ""
 "sets the location of the debian package mirror that should end up configured "
 "in the final image and which is the one a user would see and use. This has "
@@ -2315,13 +2284,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:394
 #, no-wrap
 msgid "B<--parent-mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:396
 msgid ""
 "sets the location of the debian security package mirror that should end up "
 "configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2329,13 +2298,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:396
 #, no-wrap
 msgid "B<--parent-mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:398
 msgid ""
 "sets the location of the debian volatile package mirror that should end up "
 "configured in the final image. By default, the value of --parent-mirror-"
@@ -2343,13 +2312,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:402
+#: en/lb_config.1:398
 #, no-wrap
 msgid "B<--parent-mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:400
 msgid ""
 "sets the location of the debian backports package mirror that should end up "
 "configured in the final image. By default, 'http://backports.debian.org/"
@@ -2357,13 +2326,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:400
 #, no-wrap
 msgid "B<--parent-mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:402
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images. By default, this points to the same mirror used to build "
@@ -2371,13 +2340,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:402
 #, no-wrap
 msgid "B<--mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:404
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
@@ -2385,13 +2354,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:404
 #, no-wrap
 msgid "B<--mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:406
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages of the derivative in order to build the live system. By "
@@ -2399,13 +2368,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:410
+#: en/lb_config.1:406
 #, no-wrap
 msgid "B<--mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:408
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages of the derivative in order to build the live system. By "
@@ -2413,13 +2382,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:408
 #, no-wrap
 msgid "B<--mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:410
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages of the derivative in order to build the live system. By "
@@ -2427,13 +2396,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:410
 #, no-wrap
 msgid "B<--mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:412
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages of the derivative in order to build the live system. By "
@@ -2441,13 +2410,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:412
 #, no-wrap
 msgid "B<--mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:414
 msgid ""
 "sets the location of the derivative package mirror that should end up "
 "configured in the final image and which is the one a user would see and use. "
@@ -2457,52 +2426,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:414
 #, no-wrap
 msgid "B<--mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:416
 msgid ""
 "sets the location of the derivatives security package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:420
+#: en/lb_config.1:416
 #, no-wrap
 msgid "B<--mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:418
 msgid ""
 "sets the location of the derivatives volatile package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:422
+#: en/lb_config.1:418
 #, no-wrap
 msgid "B<--mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:424
+#: en/lb_config.1:420
 msgid ""
 "sets the location of the derivatives backports package mirror that should "
 "end up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:424
+#: en/lb_config.1:420
 #, no-wrap
 msgid "B<--mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:426
+#: en/lb_config.1:422
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images of the derivative. By default, this points to the same "
@@ -2510,52 +2479,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:426
+#: en/lb_config.1:422
 #, no-wrap
 msgid "B<--mode> debian|emdebian|ubuntu"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:428
+#: en/lb_config.1:424
 msgid ""
 "defines a global mode to load project specific defaults. By default this is "
 "set to debian."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:428
+#: en/lb_config.1:424
 #, no-wrap
 msgid "B<--net-root-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:430
+#: en/lb_config.1:426
 msgid ""
 "defines the filesystem that will be configured in the bootloader "
 "configuration for your netboot image. This defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:430
+#: en/lb_config.1:426
 #, no-wrap
 msgid "B<--net-root-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:432
+#: en/lb_config.1:428
 msgid ""
 "sets additional options for mounting the root filesystem in netboot images "
 "and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:432
+#: en/lb_config.1:428
 #, no-wrap
 msgid "B<--net-root-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:434
+#: en/lb_config.1:430
 msgid ""
 "sets the file path that will be configured in the bootloader configuration "
 "for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2564,13 +2533,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:434
+#: en/lb_config.1:430
 #, no-wrap
 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:436
+#: en/lb_config.1:432
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the root filesystem of your netboot image. This defaults "
@@ -2578,38 +2547,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:436
+#: en/lb_config.1:432
 #, no-wrap
 msgid "B<--net-cow-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:438
+#: en/lb_config.1:434
 msgid ""
 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:438
+#: en/lb_config.1:434
 #, no-wrap
 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:440
+#: en/lb_config.1:436
 msgid ""
 "sets additional options for mounting the copy-on-write layer in netboot "
 "images and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:440
+#: en/lb_config.1:436
 #, no-wrap
 msgid "B<--net-cow-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:442
+#: en/lb_config.1:438
 msgid ""
 "defines the path to client writable filesystem. Anywhere that "
 "I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2617,28 +2586,28 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:441
 msgid "Example:"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:443
 msgid "/export/hosts/client_mac_address"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:445
 msgid "/export/hosts/00-16-D3-33-92-E8"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:445
 #, no-wrap
 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:447
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2646,13 +2615,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:447
 #, no-wrap
 msgid "B<--net-tarball> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:449
 msgid ""
 "defines if a compressed tarball should be created. Disabling this options "
 "leads to no tarball at all, the plain binary directory is considered the "
@@ -2660,13 +2629,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:449
 #, no-wrap
 msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:451
 msgid ""
 "defines which lists available in /usr/share/live/build/lists should be used. "
 "By default, this is set to standard. Note that in case you have local "
@@ -2676,13 +2645,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:451
 #, no-wrap
 msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:453
 msgid ""
 "defines one or more packages to be installed in the live system. This is a "
 "quick and convenient place to add a few packages when building an image "
@@ -2691,37 +2660,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457 en/live-build.7:40
+#: en/lb_config.1:453 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:455
 msgid "reduces the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:455
 #, no-wrap
 msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:457
 msgid ""
 "enables one of available third-party repository configurations in /usr/share/"
 "live/build/repositories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:457
 #, no-wrap
 msgid "B<--root-command> sudo"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:459
 msgid ""
 "controls if live-build should use sudo internally to build the live image. "
 "Note that this is not well tested and that you should, when relying on sudo, "
@@ -2729,13 +2698,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:463
+#: en/lb_config.1:459
 #, no-wrap
 msgid "B<--use-fakeroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:461
 msgid ""
 "controls if live-build should utilize fakeroot and fakechroot to try and "
 "avoid requiring root privillages where possible. By default, this option is "
@@ -2743,13 +2712,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:461
 #, no-wrap
 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:463
 msgid ""
 "defines which package archive areas of a debian packages archive should be "
 "used for configured debian package mirrors. By default, this is set to main. "
@@ -2759,26 +2728,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:463
 #, no-wrap
 msgid "B<--security> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:465
 msgid ""
 "defines if the security repositories specified in the security mirror "
 "options should be used or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:465
 #, no-wrap
 msgid "B<--source> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:467
 msgid ""
 "defines if a corresponding source image to the binary image should be build. "
 "By default this is false because most people do not require this and would "
@@ -2788,37 +2757,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:471
+#: en/lb_config.1:467
 #, no-wrap
 msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:469
 msgid "defines the image type for the source image. Default is tar."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:469
 #, no-wrap
 msgid "B<--syslinux-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:475
+#: en/lb_config.1:471
 msgid ""
 "defines the file of the syslinux splash graphic that should be used instead "
 "of the default one."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:475
+#: en/lb_config.1:471
 #, no-wrap
 msgid "B<--syslinux-timeout> I<SECONDS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:477
+#: en/lb_config.1:473
 msgid ""
 "defines the timeout the syslinux bootloader should wait for input from the "
 "user at the bootprompt prior booting the default kernel. This defaults to 0 "
@@ -2826,38 +2795,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:477
+#: en/lb_config.1:473
 #, no-wrap
 msgid "B<--syslinux-menu> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:479
+#: en/lb_config.1:475
 msgid ""
 "defines if syslinux should be make use of the vgamenu capabilities or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:479
+#: en/lb_config.1:475
 #, no-wrap
 msgid "B<--tasksel> apt|aptitude|tasksel"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:481
+#: en/lb_config.1:477
 msgid ""
 "selects which program is used to install tasks. By default, this is set to "
 "tasksel."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:481
+#: en/lb_config.1:477
 #, no-wrap
 msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:483
+#: en/lb_config.1:479
 msgid ""
 "defines one or more package tasks to be installed in the live system. This "
 "is a quick and convenient way to get a reasonable default selection of "
@@ -2867,26 +2836,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:483
+#: en/lb_config.1:479
 #, no-wrap
 msgid "B<--templates> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:485
+#: en/lb_config.1:481
 msgid ""
 "sets the path to the templates that live-build is going to use, e.g. for "
 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:481
 #, no-wrap
 msgid "B<--virtual-root-size> MB"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:487
+#: en/lb_config.1:483
 msgid ""
 "defines what size the virtual-hdd image should be. Note that although the "
 "default is set to 10000 (= 10GB), it will not need 10GB space on your "
@@ -2894,39 +2863,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487
+#: en/lb_config.1:483
 #, no-wrap
 msgid "B<--volatile> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:489
+#: en/lb_config.1:485
 msgid ""
 "defines if debian volatile package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:489
+#: en/lb_config.1:485
 #, no-wrap
 msgid "B<--backports> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:491
+#: en/lb_config.1:487
 msgid ""
 "defines if debian backports package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:491
+#: en/lb_config.1:487
 #, no-wrap
 msgid "B<--exposed-root> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:493
+#: en/lb_config.1:489
 msgid ""
 "defines whether to expose the root filesystem as read only and not covered "
 "by the union filesystem. This has useful implications for certain speciality "
@@ -2934,48 +2903,48 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:493
+#: en/lb_config.1:489
 #, no-wrap
 msgid "B<--username> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:495
+#: en/lb_config.1:491
 msgid "sets the name of the account of the default user in the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:495 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:497
+#: en/lb_config.1:493
 msgid "increases the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:497
+#: en/lb_config.1:493
 #, no-wrap
 msgid "B<--win32-loader true|false>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:500
+#: en/lb_config.1:496
 msgid "defines if win32-loader should be included in the binary image or not."
 msgstr ""
 
 #. type: SH
-#: en/lb_config.1:501
+#: en/lb_config.1:497
 #, no-wrap
 msgid "ENVIRONMENT"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:504
+#: en/lb_config.1:500
 msgid ""
 "Currently, command line switches can also be specified through the "
 "corresponding environment variable. However, this generally should not be "
@@ -2989,20 +2958,20 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:508
+#: en/lb_config.1:504
 #, no-wrap
 msgid "B<auto/config>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:509
+#: en/lb_config.1:505
 #, no-wrap
 msgid "B</etc/live/build.conf, /etc/live/build.d>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:512
+#: en/lb_config.1:508
 msgid ""
 "An optional, global configuration file for B<lb config> variables. It is "
 "useful to specify a few system wide defaults, like "
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index a95de3c..4c913dc 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index e234072..0fda97e 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index 00f6df9..6f2d8ff 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index a404550..9ee9478 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index a8d4c8b..16767b0 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index b1d845f..e5e60a0 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index e3d8e3c..5576b4a 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index bd52d50..07a140e 100644
--- a/manpages/po/de/lb_source_net.1.po
+++ b/manpages/po/de/lb_source_net.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index 3c3ccb4..27e643e 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_usb.1.po b/manpages/po/de/lb_source_usb.1.po
index 3a325be..52b14d4 100644
--- a/manpages/po/de/lb_source_usb.1.po
+++ b/manpages/po/de/lb_source_usb.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index aa3cd9c..5f4912e 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index 483ec79..fa75969 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:05+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index 2e3d0d9..0d870e7 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: 2011-01-02 01:12+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -454,23 +449,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -493,23 +487,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -530,23 +523,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -570,23 +562,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -607,48 +598,47 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457 en/live-build.7:40
+#: en/lb_config.1:453 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:495 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
@@ -1105,614 +1095,603 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:108
 #, no-wrap
-msgid "B<lb_chroot_hooks>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:110
-msgid "execute hooks in chroot"
-msgstr ""
-
-#. type: IP
-#: en/live-build.7:110
-#, no-wrap
 msgid "B<lb_chroot_hostname>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:112
+#: en/live-build.7:110
 msgid "manage /bin/hostname"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:112
+#: en/live-build.7:110
 #, no-wrap
 msgid "B<lb_chroot_hosts>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:114
+#: en/live-build.7:112
 msgid "manage /etc/hosts"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:114
+#: en/live-build.7:112
 #, no-wrap
 msgid "B<lb_chroot_install-packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:116
+#: en/live-build.7:114
 msgid "install queued packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:116
+#: en/live-build.7:114
 #, no-wrap
 msgid "B<lb_chroot_interactive>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:118
+#: en/live-build.7:116
 msgid "make build interactive"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:118
+#: en/live-build.7:116
 #, no-wrap
 msgid "B<lb_chroot_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:120
+#: en/live-build.7:118
 msgid "manage /etc/kernel-img.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:120
+#: en/live-build.7:118
 #, no-wrap
 msgid "B<lb_chroot_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:122
+#: en/live-build.7:120
 msgid "execute local hooks in chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:122
+#: en/live-build.7:120
 #, no-wrap
 msgid "B<lb_chroot_local-includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:124
+#: en/live-build.7:122
 msgid "copy local files into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:124
+#: en/live-build.7:122
 #, no-wrap
 msgid "B<lb_chroot_localization>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:126
+#: en/live-build.7:124
 msgid "install localization packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:126
+#: en/live-build.7:124
 #, no-wrap
 msgid "B<lb_chroot_local-packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:128
+#: en/live-build.7:126
 msgid "queue install of local packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:128
+#: en/live-build.7:126
 #, no-wrap
 msgid "B<lb_chroot_local-patches>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:130
+#: en/live-build.7:128
 msgid "apply local patches against chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:130
+#: en/live-build.7:128
 #, no-wrap
 msgid "B<lb_chroot_local-preseed>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:132
+#: en/live-build.7:130
 msgid "use debconf local preseeding file"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:132
+#: en/live-build.7:130
 #, no-wrap
 msgid "B<lb_chroot_packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:134
+#: en/live-build.7:132
 msgid "queue install of packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:134
+#: en/live-build.7:132
 #, no-wrap
 msgid "B<lb_chroot_packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:136
+#: en/live-build.7:134
 msgid "queue install of package lists into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:136
+#: en/live-build.7:134
 #, no-wrap
 msgid "B<lb_chroot_preseed>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:138
+#: en/live-build.7:136
 msgid "use debconf preseeding file"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:138
+#: en/live-build.7:136
 #, no-wrap
 msgid "B<lb_chroot_proc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:140
+#: en/live-build.7:138
 msgid "mount /proc"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:140
+#: en/live-build.7:138
 #, no-wrap
 msgid "B<lb_chroot_resolv>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:142
+#: en/live-build.7:140
 msgid "manage /etc/resolv.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:142
+#: en/live-build.7:140
 #, no-wrap
 msgid "B<lb_chroot_selinuxfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:144
+#: en/live-build.7:142
 msgid "mount /selinux"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:144
+#: en/live-build.7:142
 #, no-wrap
 msgid "B<lb_chroot_sources>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:146
+#: en/live-build.7:144
 msgid "manage /etc/apt/sources.list"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:146
+#: en/live-build.7:144
 #, no-wrap
 msgid "B<lb_chroot_sysfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:148
+#: en/live-build.7:146
 msgid "mount /sys"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:148
+#: en/live-build.7:146
 #, no-wrap
 msgid "B<lb_chroot_sysv-rc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:150
+#: en/live-build.7:148
 msgid "manage /usr/sbin/policy-rc.d"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:150
+#: en/live-build.7:148
 #, no-wrap
 msgid "B<lb_chroot_tasks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:152
+#: en/live-build.7:150
 msgid "install tasks into chroot"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:152
+#: en/live-build.7:150
 #, no-wrap
 msgid "Binary commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:153
+#: en/live-build.7:151
 #, no-wrap
 msgid "B<lb_binary_chroot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:155
+#: en/live-build.7:153
 msgid "copy chroot into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:155
+#: en/live-build.7:153
 #, no-wrap
 msgid "B<lb_binary_debian-installer>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:157
+#: en/live-build.7:155
 msgid "install debian-installer into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:157
+#: en/live-build.7:155
 #, no-wrap
 msgid "B<lb_binary_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:159
+#: en/live-build.7:157
 msgid "install disk information into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:159
+#: en/live-build.7:157
 #, no-wrap
 msgid "B<lb_binary_grub>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:161
+#: en/live-build.7:159
 msgid "installs grub into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:161
+#: en/live-build.7:159
 #, no-wrap
 msgid "B<lb_binary_grub2>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:163
+#: en/live-build.7:161
 msgid "installs grub2 into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:163
+#: en/live-build.7:161
 #, no-wrap
 msgid "B<lb_binary_includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:165 en/live-build.7:173
+#: en/live-build.7:163 en/live-build.7:171
 msgid "copy files into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:165
+#: en/live-build.7:163
 #, no-wrap
 msgid "B<lb_binary_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:167
+#: en/live-build.7:165
 msgid "build iso binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:167
+#: en/live-build.7:165
 #, no-wrap
 msgid "B<lb_binary_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:169
+#: en/live-build.7:167
 msgid "install linux-image into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:169
+#: en/live-build.7:167
 #, no-wrap
 msgid "B<lb_binary_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:171
+#: en/live-build.7:169
 msgid "execute local hooks in binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:171
+#: en/live-build.7:169
 #, no-wrap
 msgid "B<lb_binary_local-includes>(1)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:173
+#: en/live-build.7:171
 #, no-wrap
 msgid "B<lb_binary_local-packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:175
+#: en/live-build.7:173
 msgid "install local package lists into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:175
+#: en/live-build.7:173
 #, no-wrap
 msgid "B<lb_binary_manifest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:177
+#: en/live-build.7:175
 msgid "create manifest"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:177
+#: en/live-build.7:175
 #, no-wrap
 msgid "B<lb_binary_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:179
+#: en/live-build.7:177
 msgid "create binary checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:179
+#: en/live-build.7:177
 #, no-wrap
 msgid "B<lb_binary_memtest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:181
+#: en/live-build.7:179
 msgid "installs a memtest into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:181
+#: en/live-build.7:179
 #, no-wrap
 msgid "B<lb_binary_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:183
+#: en/live-build.7:181
 msgid "build netboot binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:183
+#: en/live-build.7:181
 #, no-wrap
 msgid "B<lb_binary_rootfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:185
+#: en/live-build.7:183
 msgid "build rootfs image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:185
+#: en/live-build.7:183
 #, no-wrap
 msgid "B<lb_binary_silo>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:187
+#: en/live-build.7:185
 msgid "installs silo into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:187
+#: en/live-build.7:185
 #, no-wrap
 msgid "B<lb_binary_syslinux>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:189
+#: en/live-build.7:187
 msgid "installs syslinux into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:189
+#: en/live-build.7:187
 #, no-wrap
 msgid "B<lb_binary_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:191
+#: en/live-build.7:189
 msgid "build harddisk binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:191
+#: en/live-build.7:189
 #, no-wrap
 msgid "B<lb_binary_usb>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:193
+#: en/live-build.7:191
 msgid "build binary usb-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:193
+#: en/live-build.7:191
 #, no-wrap
 msgid "B<lb_binary_virtual-hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:195
+#: en/live-build.7:193
 msgid "build binary virtual-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:195
+#: en/live-build.7:193
 #, no-wrap
 msgid "B<lb_binary_win32-loader>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:197
+#: en/live-build.7:195
 msgid "installs win32-loader into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:197
+#: en/live-build.7:195
 #, no-wrap
 msgid "B<lb_binary_yaboot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:199
+#: en/live-build.7:197
 msgid "installs yaboot into binary"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:199
+#: en/live-build.7:197
 #, no-wrap
 msgid "Source commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:200
+#: en/live-build.7:198
 #, no-wrap
 msgid "B<lb_source_debian>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:202
+#: en/live-build.7:200
 msgid "download sources"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:202
+#: en/live-build.7:200
 #, no-wrap
 msgid "B<lb_source_debian-live>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:204
+#: en/live-build.7:202
 msgid "copy debian-live config into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:204
+#: en/live-build.7:202
 #, no-wrap
 msgid "B<lb_source_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:206
+#: en/live-build.7:204
 msgid "install disk information into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:206
+#: en/live-build.7:204
 #, no-wrap
 msgid "B<lb_source_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:208
+#: en/live-build.7:206
 msgid "build iso source image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:208
+#: en/live-build.7:206
 #, no-wrap
 msgid "B<lb_source_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:210
+#: en/live-build.7:208
 msgid "create source checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:210
+#: en/live-build.7:208
 #, no-wrap
 msgid "B<lb_source_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:212
+#: en/live-build.7:210
 msgid "build source net image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:212
+#: en/live-build.7:210
 #, no-wrap
 msgid "B<lb_source_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:214
+#: en/live-build.7:212
 msgid "build source tarball"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:214
+#: en/live-build.7:212
 #, no-wrap
 msgid "B<lb_source_usb>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:216
+#: en/live-build.7:214
 msgid "build source usb-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:216
+#: en/live-build.7:214
 #, no-wrap
 msgid "B<lb_source_virtual-hdd>(1)"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:219
+#: en/live-build.7:217
 msgid "build source virtual-hdd image"
 msgstr ""
 
 #. type: SH
-#: en/live-build.7:220
+#: en/live-build.7:218
 #, no-wrap
 msgid "CONFIG FILES"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:223
+#: en/live-build.7:221
 msgid ""
 "Many live-build commands make use of files in the I<config/> directory to "
 "control what they do. Besides the common I<config/common>, which is used by "
@@ -1724,7 +1703,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:225
+#: en/live-build.7:223
 msgid ""
 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
 "config/bootstrap_debootstrap to read the options it will use. See the man "
@@ -1735,7 +1714,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:227
+#: en/live-build.7:225
 msgid ""
 "Note that live-build will respect environment variables which are present in "
 "the context of the shell it is running. If variables can be read from config "
@@ -1746,7 +1725,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:229
+#: en/live-build.7:227
 msgid ""
 "In some rare cases, you may want to have different versions of these files "
 "for different architectures or distributions. If files named config/stage."
@@ -1759,7 +1738,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:232
+#: en/live-build.7:230
 msgid ""
 "All config files are shell scripts which are sourced by a live-build "
 "program. That means they have to follow the normal shell syntax. You can "
@@ -1767,23 +1746,23 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:234
+#: en/live-build.7:232
 #, no-wrap
 msgid "B</etc/live/build.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:235
+#: en/live-build.7:233
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:239
+#: en/live-build.7:237
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:241
+#: en/live-build.7:239
 msgid "I<live-config>(7)"
 msgstr ""
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
index 9d871ad..aa4ec0f 100644
--- a/manpages/po4a.cfg
+++ b/manpages/po4a.cfg
@@ -38,7 +38,6 @@
 [type: man] en/lb_chroot_devpts.1 $lang:$lang/lb_chroot_devpts.$lang.1
 [type: man] en/lb_chroot_dpkg.1 $lang:$lang/lb_chroot_dpkg.$lang.1
 [type: man] en/lb_chroot_hacks.1 $lang:$lang/lb_chroot_hacks.$lang.1
-[type: man] en/lb_chroot_hooks.1 $lang:$lang/lb_chroot_hooks.$lang.1
 [type: man] en/lb_chroot_hostname.1 $lang:$lang/lb_chroot_hostname.$lang.1
 [type: man] en/lb_chroot_hosts.1 $lang:$lang/lb_chroot_hosts.$lang.1
 [type: man] en/lb_chroot_install-packages.1 $lang:$lang/lb_chroot_install-packages.$lang.1
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 6ecf910..b909d52 100644
--- a/manpages/pot/lb.1.pot
+++ b/manpages/pot/lb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -206,18 +206,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -250,18 +250,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -292,23 +292,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -337,23 +336,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -381,23 +379,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -418,23 +415,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -454,23 +450,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -490,23 +485,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -527,23 +521,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -566,23 +559,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -603,23 +595,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -643,23 +634,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -680,23 +670,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 59aea14..5d7d7d7 100644
--- a/manpages/pot/lb_binary.1.pot
+++ b/manpages/pot/lb_binary.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index 42baa4b..234f413 100644
--- a/manpages/pot/lb_binary_checksums.1.pot
+++ b/manpages/pot/lb_binary_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -706,21 +695,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index fd67479..d47574d 100644
--- a/manpages/pot/lb_binary_chroot.1.pot
+++ b/manpages/pot/lb_binary_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 1d16a69..271a826 100644
--- a/manpages/pot/lb_binary_debian-installer.1.pot
+++ b/manpages/pot/lb_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index f124ed0..44b631b 100644
--- a/manpages/pot/lb_binary_disk.1.pot
+++ b/manpages/pot/lb_binary_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 66f9e8a..1f03f6e 100644
--- a/manpages/pot/lb_binary_grub.1.pot
+++ b/manpages/pot/lb_binary_grub.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index 35d42f3..d07d1cf 100644
--- a/manpages/pot/lb_binary_grub2.1.pot
+++ b/manpages/pot/lb_binary_grub2.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index d78a486..04818a8 100644
--- a/manpages/pot/lb_binary_includes.1.pot
+++ b/manpages/pot/lb_binary_includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index 89048d7..78617e2 100644
--- a/manpages/pot/lb_binary_iso.1.pot
+++ b/manpages/pot/lb_binary_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index 64131f4..409865e 100644
--- a/manpages/pot/lb_binary_linux-image.1.pot
+++ b/manpages/pot/lb_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_local-hooks.1.pot b/manpages/pot/lb_binary_local-hooks.1.pot
index 940b853..ccd2e64 100644
--- a/manpages/pot/lb_binary_local-hooks.1.pot
+++ b/manpages/pot/lb_binary_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index d5203a0..01ffe61 100644
--- a/manpages/pot/lb_binary_local-includes.1.pot
+++ b/manpages/pot/lb_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_local-packagelists.1.pot b/manpages/pot/lb_binary_local-packagelists.1.pot
index 55fcccd..7ad133f 100644
--- a/manpages/pot/lb_binary_local-packagelists.1.pot
+++ b/manpages/pot/lb_binary_local-packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index 07ae167..11a75ca 100644
--- a/manpages/pot/lb_binary_manifest.1.pot
+++ b/manpages/pot/lb_binary_manifest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index fa80aa6..a5bbb7c 100644
--- a/manpages/pot/lb_binary_memtest.1.pot
+++ b/manpages/pot/lb_binary_memtest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 88dfb35..75c8d71 100644
--- a/manpages/pot/lb_binary_net.1.pot
+++ b/manpages/pot/lb_binary_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 81e35b2..7430192 100644
--- a/manpages/pot/lb_binary_rootfs.1.pot
+++ b/manpages/pot/lb_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index 7c025d2..c2bdd79 100644
--- a/manpages/pot/lb_binary_silo.1.pot
+++ b/manpages/pot/lb_binary_silo.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index 26f2671..477f8a4 100644
--- a/manpages/pot/lb_binary_syslinux.1.pot
+++ b/manpages/pot/lb_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index d6237ff..abb790c 100644
--- a/manpages/pot/lb_binary_tar.1.pot
+++ b/manpages/pot/lb_binary_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_usb.1.pot b/manpages/pot/lb_binary_usb.1.pot
index 7f533e1..47495cc 100644
--- a/manpages/pot/lb_binary_usb.1.pot
+++ b/manpages/pot/lb_binary_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index d245627..82dc222 100644
--- a/manpages/pot/lb_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lb_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index 9bbab15..d84a9cd 100644
--- a/manpages/pot/lb_binary_win32-loader.1.pot
+++ b/manpages/pot/lb_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index 3366726..709c0b2 100644
--- a/manpages/pot/lb_binary_yaboot.1.pot
+++ b/manpages/pot/lb_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index e3937f9..63d8571 100644
--- a/manpages/pot/lb_bootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index 59d528e..66aa176 100644
--- a/manpages/pot/lb_bootstrap_cache.1.pot
+++ b/manpages/pot/lb_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index ed242b8..0d86e9a 100644
--- a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index 83549ec..19524d1 100644
--- a/manpages/pot/lb_bootstrap_copy.1.pot
+++ b/manpages/pot/lb_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index 0ce8386..a6e6fb8 100644
--- a/manpages/pot/lb_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index 9f5943a..fc71367 100644
--- a/manpages/pot/lb_build.1.pot
+++ b/manpages/pot/lb_build.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index b270f1a..f727284 100644
--- a/manpages/pot/lb_chroot.1.pot
+++ b/manpages/pot/lb_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index 6652f79..c55d26e 100644
--- a/manpages/pot/lb_chroot_apt.1.pot
+++ b/manpages/pot/lb_chroot_apt.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index 48a5d9a..ddffcaa 100644
--- a/manpages/pot/lb_chroot_cache.1.pot
+++ b/manpages/pot/lb_chroot_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index dcba97f..34d067d 100644
--- a/manpages/pot/lb_chroot_debianchroot.1.pot
+++ b/manpages/pot/lb_chroot_debianchroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index 4873014..5877413 100644
--- a/manpages/pot/lb_chroot_devpts.1.pot
+++ b/manpages/pot/lb_chroot_devpts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index 1c5fd31..8336eed 100644
--- a/manpages/pot/lb_chroot_dpkg.1.pot
+++ b/manpages/pot/lb_chroot_dpkg.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index e11f8b0..1a91934 100644
--- a/manpages/pot/lb_chroot_hacks.1.pot
+++ b/manpages/pot/lb_chroot_hacks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hooks.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
deleted file mode 100644
index de1970e..0000000
--- a/manpages/pot/lb_chroot_hooks.1.pot
+++ /dev/null
@@ -1,726 +0,0 @@
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-05-18"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a17"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
-#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
-#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
-#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
-#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
-#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
-#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#.  FIXME
-#. type: IP
-#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
-#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
-#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
-#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
-#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
-#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
-#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
-#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
-#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
-#: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
-#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:5
-msgid "B<lb chroot_hooks> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:8
-msgid "B<lb chroot_hooks> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:11
-msgid ""
-"B<lb chroot_hooks> is a low-level command (plumbing) of I<live-build>(7), "
-"the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_hooks.1:16
-msgid ""
-"B<lb chroot_hooks> has no specific options but understands all generic live-"
-"build options. See I<live-build>(7) for a complete list of all generic live-"
-"build options."
-msgstr ""
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index 54b8433..8a59cac 100644
--- a/manpages/pot/lb_chroot_hostname.1.pot
+++ b/manpages/pot/lb_chroot_hostname.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index 52819db..58f538e 100644
--- a/manpages/pot/lb_chroot_hosts.1.pot
+++ b/manpages/pot/lb_chroot_hosts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index 7e94fe9..1ec4ee7 100644
--- a/manpages/pot/lb_chroot_install-packages.1.pot
+++ b/manpages/pot/lb_chroot_install-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 60f48df..53fc274 100644
--- a/manpages/pot/lb_chroot_interactive.1.pot
+++ b/manpages/pot/lb_chroot_interactive.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index 2cda798..8fc4dbc 100644
--- a/manpages/pot/lb_chroot_linux-image.1.pot
+++ b/manpages/pot/lb_chroot_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-hooks.1.pot b/manpages/pot/lb_chroot_local-hooks.1.pot
index ca65a89..a64d11d 100644
--- a/manpages/pot/lb_chroot_local-hooks.1.pot
+++ b/manpages/pot/lb_chroot_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index 62760d9..fce318e 100644
--- a/manpages/pot/lb_chroot_local-includes.1.pot
+++ b/manpages/pot/lb_chroot_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-packagelists.1.pot b/manpages/pot/lb_chroot_local-packagelists.1.pot
index a5bd597..2d7e453 100644
--- a/manpages/pot/lb_chroot_local-packagelists.1.pot
+++ b/manpages/pot/lb_chroot_local-packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-packages.1.pot b/manpages/pot/lb_chroot_local-packages.1.pot
index 9dd4223..5adff1b 100644
--- a/manpages/pot/lb_chroot_local-packages.1.pot
+++ b/manpages/pot/lb_chroot_local-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index 3c67538..7f81267 100644
--- a/manpages/pot/lb_chroot_local-patches.1.pot
+++ b/manpages/pot/lb_chroot_local-patches.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index 4fccc7a..f8a4b07 100644
--- a/manpages/pot/lb_chroot_local-preseed.1.pot
+++ b/manpages/pot/lb_chroot_local-preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_localization.1.pot b/manpages/pot/lb_chroot_localization.1.pot
index 2151943..d542934 100644
--- a/manpages/pot/lb_chroot_localization.1.pot
+++ b/manpages/pot/lb_chroot_localization.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot
index 535d50f..192ef82 100644
--- a/manpages/pot/lb_chroot_packagelists.1.pot
+++ b/manpages/pot/lb_chroot_packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 870a120..bc12d7e 100644
--- a/manpages/pot/lb_chroot_packages.1.pot
+++ b/manpages/pot/lb_chroot_packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_preseed.1.pot b/manpages/pot/lb_chroot_preseed.1.pot
index 3d5bd0d..a087839 100644
--- a/manpages/pot/lb_chroot_preseed.1.pot
+++ b/manpages/pot/lb_chroot_preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index 3e7d545..bb6146c 100644
--- a/manpages/pot/lb_chroot_proc.1.pot
+++ b/manpages/pot/lb_chroot_proc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index 2e178cf..2c625ad 100644
--- a/manpages/pot/lb_chroot_resolv.1.pot
+++ b/manpages/pot/lb_chroot_resolv.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index 1a45d8e..62842ad 100644
--- a/manpages/pot/lb_chroot_selinuxfs.1.pot
+++ b/manpages/pot/lb_chroot_selinuxfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_sources.1.pot b/manpages/pot/lb_chroot_sources.1.pot
index 7a49ad8..9c79620 100644
--- a/manpages/pot/lb_chroot_sources.1.pot
+++ b/manpages/pot/lb_chroot_sources.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index 171d32c..b28628a 100644
--- a/manpages/pot/lb_chroot_sysfs.1.pot
+++ b/manpages/pot/lb_chroot_sysfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index 24df261..06de158 100644
--- a/manpages/pot/lb_chroot_sysv-rc.1.pot
+++ b/manpages/pot/lb_chroot_sysv-rc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_tasks.1.pot b/manpages/pot/lb_chroot_tasks.1.pot
index 19a09bf..912b0d1 100644
--- a/manpages/pot/lb_chroot_tasks.1.pot
+++ b/manpages/pot/lb_chroot_tasks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index 74811b6..44066d9 100644
--- a/manpages/pot/lb_chroot_upstart.1.pot
+++ b/manpages/pot/lb_chroot_upstart.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 2cabe80..2b60ef5 100644
--- a/manpages/pot/lb_clean.1.pot
+++ b/manpages/pot/lb_clean.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index f34c65e..54e3e04 100644
--- a/manpages/pot/lb_config.1.pot
+++ b/manpages/pot/lb_config.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -763,513 +752,508 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:45
-msgid "  [B<--bootstrap-config> I<FILE>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:47
 msgid "  [-f|B<--bootstrap-flavour> minimal|standard]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:49
+#: en/lb_config.1:47
 msgid "  [B<--bootstrap-keyring> I<PACKAGE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:51
+#: en/lb_config.1:49
 msgid "  [B<--cache> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:53
+#: en/lb_config.1:51
 msgid "  [B<--cache-indices> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:55
+#: en/lb_config.1:53
 msgid "  [B<--cache-packages> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:57
+#: en/lb_config.1:55
 msgid "  [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:59
+#: en/lb_config.1:57
 msgid "  [B<--checksums> md5|sha1|sha256|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:61
+#: en/lb_config.1:59
 msgid "  [B<--compression> bzip2|gzip|lzip|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:63
+#: en/lb_config.1:61
 msgid "  [B<--build-with-chroot> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:65
+#: en/lb_config.1:63
 msgid "  [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:67
+#: en/lb_config.1:65
 msgid "  [B<--clean>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:69
+#: en/lb_config.1:67
 msgid "  [-c|B<--conffile> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:71
+#: en/lb_config.1:69
 msgid "  [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:73
+#: en/lb_config.1:71
 msgid "  [B<--debconf-nowarnings> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:75
+#: en/lb_config.1:73
 msgid "  [B<--debconf-priority> low|medium|high|critical]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:77
+#: en/lb_config.1:75
 msgid ""
 "  [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:79
+#: en/lb_config.1:77
 msgid "  [B<--debian-installer-distribution> daily|I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:81
+#: en/lb_config.1:79
 msgid "  [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:83
+#: en/lb_config.1:81
 msgid "  [B<--debian-installer-gui> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:85
+#: en/lb_config.1:83
 msgid "  [B<--debug>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:87
+#: en/lb_config.1:85
 msgid "  [-d|B<--distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:89
+#: en/lb_config.1:87
 msgid "  [B<--parent-distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:91
+#: en/lb_config.1:89
 msgid "  [B<--parent-debian-installer-distribution> I<CODENAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:93
+#: en/lb_config.1:91
 msgid "  [B<--dump>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:95
+#: en/lb_config.1:93
 msgid "  [B<--fdisk> fdisk|fdisk.dist]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:97
+#: en/lb_config.1:95
 msgid "  [B<--force>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:99
+#: en/lb_config.1:97
 msgid "  [B<--grub-splash> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:101
+#: en/lb_config.1:99
 msgid "  [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:103
+#: en/lb_config.1:101
 msgid "  [B<--hooks> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:105
+#: en/lb_config.1:103
 msgid "  [B<--hostname> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:107
+#: en/lb_config.1:105
 msgid "  [B<--ignore-system-defaults>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:109
+#: en/lb_config.1:107
 msgid "  [B<--includes> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:111
+#: en/lb_config.1:109
 msgid "  [B<--initramfs> auto|none|live-boot|casper]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:113
+#: en/lb_config.1:111
 msgid "  [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:115
+#: en/lb_config.1:113
 msgid "  [B<--interactive> shell]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:117
+#: en/lb_config.1:115
 msgid "  [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:119
+#: en/lb_config.1:117
 msgid "  [B<--iso-application> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:121
+#: en/lb_config.1:119
 msgid "  [B<--iso-preparer> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:123
+#: en/lb_config.1:121
 msgid "  [B<--iso-publisher> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:125
+#: en/lb_config.1:123
 msgid "  [B<--iso-volume> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:127
+#: en/lb_config.1:125
 msgid "  [B<--jffs2-eraseblock> I<SIZE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:129
+#: en/lb_config.1:127
 msgid "  [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:131
+#: en/lb_config.1:129
 msgid "  [-l|B<--language> I<LANGUAGE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:133
+#: en/lb_config.1:131
 msgid "  [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:135
+#: en/lb_config.1:133
 msgid "  [B<--linux-packages> I<\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:137
+#: en/lb_config.1:135
 msgid "  [B<--losetup> losetup|losetup.orig]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:139
+#: en/lb_config.1:137
 msgid "  [B<--memtest> memtest86+|memtest86|none]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:141
+#: en/lb_config.1:139
 msgid "  [-m|B<--parent-mirror-bootstrap> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:143
+#: en/lb_config.1:141
 msgid "  [B<--parent-mirror-chroot> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:145
+#: en/lb_config.1:143
 msgid "  [B<--parent-mirror-chroot-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:147
+#: en/lb_config.1:145
 msgid "  [B<--parent-mirror-chroot-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:149
+#: en/lb_config.1:147
 msgid "  [B<--parent-mirror-chroot-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:151
+#: en/lb_config.1:149
 msgid "  [B<--parent-mirror-binary> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:153
+#: en/lb_config.1:151
 msgid "  [B<--parent-mirror-binary-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:155
+#: en/lb_config.1:153
 msgid "  [B<--parent-mirror-binary-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:157
+#: en/lb_config.1:155
 msgid "  [B<--parent-mirror-binary-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:159
+#: en/lb_config.1:157
 msgid "  [B<--parent-mirror-debian-installer> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:161
+#: en/lb_config.1:159
 msgid "  [B<--mirror-bootstrap> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:163
+#: en/lb_config.1:161
 msgid "  [B<--mirror-chroot> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:165
+#: en/lb_config.1:163
 msgid "  [B<--mirror-chroot-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:167
+#: en/lb_config.1:165
 msgid "  [B<--mirror-chroot-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:169
+#: en/lb_config.1:167
 msgid "  [B<--mirror-chroot-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:171
+#: en/lb_config.1:169
 msgid "  [B<--mirror-binary> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:173
+#: en/lb_config.1:171
 msgid "  [B<--mirror-binary-security> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:175
+#: en/lb_config.1:173
 msgid "  [B<--mirror-binary-volatile> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:177
+#: en/lb_config.1:175
 msgid "  [B<--mirror-binary-backports> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:179
+#: en/lb_config.1:177
 msgid "  [B<--mirror-debian-installer> I<URL>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:181
+#: en/lb_config.1:179
 msgid "  [B<--mode> debian|emdebian|ubuntu]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:183
+#: en/lb_config.1:181
 msgid "  [B<--net-root-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:185
+#: en/lb_config.1:183
 msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:187
+#: en/lb_config.1:185
 msgid "  [B<--net-root-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:189
+#: en/lb_config.1:187
 msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:191
+#: en/lb_config.1:189
 msgid "  [B<--net-cow-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:193
+#: en/lb_config.1:191
 msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:195
+#: en/lb_config.1:193
 msgid "  [B<--net-cow-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:197
+#: en/lb_config.1:195
 msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:199
+#: en/lb_config.1:197
 msgid "  [B<--net-tarball> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:201
+#: en/lb_config.1:199
 msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:203
+#: en/lb_config.1:201
 msgid "  [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:205
+#: en/lb_config.1:203
 msgid "  [B<--quiet>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:207
+#: en/lb_config.1:205
 msgid "  [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:209
+#: en/lb_config.1:207
 msgid "  [B<--root-command> sudo]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:211
+#: en/lb_config.1:209
 msgid "  [B<--use-fakeroot> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:213
+#: en/lb_config.1:211
 msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:215
+#: en/lb_config.1:213
 msgid "  [B<--security> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:217
+#: en/lb_config.1:215
 msgid "  [B<--source> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:219
+#: en/lb_config.1:217
 msgid "  [-s|B<--source-images> iso|net|tar|usb-hdd]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:221
+#: en/lb_config.1:219
 msgid "  [B<--syslinux-splash> I<FILE>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:221
 msgid "  [B<--syslinux-timeout> I<SECONDS>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:225
+#: en/lb_config.1:223
 msgid "  [B<--syslinux-menu> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:227
+#: en/lb_config.1:225
 msgid "  [B<--tasksel> apt|aptitude|tasksel]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:227
 msgid "  [B<--tasks> I<TASK>|\"I<TASKS>\"]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:231
+#: en/lb_config.1:229
 msgid "  [B<--templates> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:233
+#: en/lb_config.1:231
 msgid "  [B<--virtual-root-size >I<MB>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:233
 msgid "  [B<--volatile> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:237
+#: en/lb_config.1:235
 msgid "  [B<--backports> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:239
+#: en/lb_config.1:237
 msgid "  [B<--exposed-root> true|false]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:241
+#: en/lb_config.1:239
 msgid "  [B<--username> I<NAME>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:243
+#: en/lb_config.1:241
 msgid "  [B<--verbose>]"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:244
 msgid "  [B<--win32-loader true|false]>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:249
+#: en/lb_config.1:247
 msgid ""
 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
 "Debian Live tool suite."
@@ -1277,7 +1261,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:250
 msgid ""
 "B<lb config> populates the configuration directory for live-build. By "
 "default, this directory is named 'config' and is created in the current "
@@ -1286,7 +1270,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:255
+#: en/lb_config.1:253
 msgid ""
 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
 "options depending on the setting of other options (e.g. which linux packages "
@@ -1302,7 +1286,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:256
 msgid ""
 "In addition to its specific options B<lb config> understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1311,26 +1295,26 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:258
 #, no-wrap
 msgid "B<--apt> apt|aptitude"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:260
 msgid ""
 "defines if apt-get or aptitude is used to install packages when building the "
 "image. The default is apt."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:260
 #, no-wrap
 msgid "B<--apt-ftp-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:262
 msgid ""
 "sets the ftp proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1338,13 +1322,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:262
 #, no-wrap
 msgid "B<--apt-http-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:264
 msgid ""
 "sets the http proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1352,26 +1336,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:264
 #, no-wrap
 msgid "B<--apt-indices> true|false|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:266
 msgid ""
 "defines if the resulting images should have apt indices or not and defaults "
 "to true. If set to none, no indices are included at all."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:266
 #, no-wrap
 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:268
 msgid ""
 "defines the default options that will be appended to every apt call that is "
 "made inside chroot during the building of the image. By default, this is set "
@@ -1379,13 +1363,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:268
 #, no-wrap
 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:270
 msgid ""
 "defines the default options that will be appended to every aptitude call "
 "that is made inside chroot during building of the image. By default, this is "
@@ -1393,13 +1377,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:270
 #, no-wrap
 msgid "B<--apt-pipeline> I<DEPTH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:272
 msgid ""
 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1411,38 +1395,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:272
 #, no-wrap
 msgid "B<--apt-recommends> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:274
 msgid ""
 "defines if apt should install recommended packages automatically. By "
 "default, this is true except in emdebian mode."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:274
 #, no-wrap
 msgid "B<--apt-secure> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:276
 msgid ""
 "defines if apt should check repository signatures. This is true by default."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:276
 #, no-wrap
 msgid "-a|B<--architectures> I<ARCHITECTURE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:278
 msgid ""
 "defines the architecture of the to be build image. By default, this is set "
 "to the host architecture. Note that you cannot crossbuild for another "
@@ -1453,13 +1437,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:278
 #, no-wrap
 msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:280
 msgid ""
 "defines the image type to build. By default, for images using syslinux this "
 "is set to iso-hybrid to build CD/DVD images that may also be used like usb-"
@@ -1467,13 +1451,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:280
 #, no-wrap
 msgid "B<--binary-filesystem> fat16|fat32|ext2"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:282
 msgid ""
 "defines the filesystem to be used in the image type. This only has an effect "
 "if the selected binary image type does allow to choose a filesystem. For "
@@ -1486,24 +1470,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:282
 #, no-wrap
 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:284
 msgid "sets boot parameters specific to debian-installer, if included."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:284
 #, no-wrap
 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:286
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
 "parameters can be found, for etch, in the manpage of casper, for all other "
@@ -1512,13 +1496,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:286
 #, no-wrap
 msgid "B<--bootloader> grub|syslinux|yaboot"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:288
 msgid ""
 "defines which bootloader is beeing used in the generated image. This has "
 "only an effect if the selected binary image type does allow to choose the "
@@ -1531,13 +1515,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:288
 #, no-wrap
 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:290
 msgid ""
 "defines which program is used to bootstrap the debian chroot, default is "
 "debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1547,28 +1531,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:292
-#, no-wrap
-msgid "B<--bootstrap-config> I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:294
-msgid ""
-"sets a custom configuration file for the boostrap programm of choice and is "
-"empty by default. Refere to the documentation of debootstrap or cdebootstrap "
-"for more information about that. When the bootstrap program is set to copy, "
-"this has no effect."
-msgstr ""
-
-#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:290
 #, no-wrap
 msgid "-f|B<--bootstrap-flavour> minimal|standard"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:292
 msgid ""
 "defines if the bootstrap program should bootstrap the standard system (all "
 "packages of priority required and important, which is the default) or a "
@@ -1576,39 +1545,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:292
 #, no-wrap
 msgid "B<--bootstrap-keyring> I<PACKAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:294
 msgid ""
 "sets the archive keyring package to be used. Default is debian-archive-"
 "keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:294
 #, no-wrap
 msgid "B<--cache> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:296
 msgid ""
 "defines globally if any cache should be used at all. Different caches can be "
 "controled through the their own options."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:296
 #, no-wrap
 msgid "B<--cache-indices> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:298
 msgid ""
 "defines if downloaded package indices and lists should be cached which is "
 "false by default. Enabling it would allow to rebuild an image completely "
@@ -1616,13 +1585,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:298
 #, no-wrap
 msgid "B<--cache-packages> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:300
 msgid ""
 "defines if downloaded packages files should be cached which is true by "
 "default. Disabling it does save space consumtion in your build directory, "
@@ -1633,13 +1602,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:300
 #, no-wrap
 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:302
 msgid ""
 "sets which stages should be cached. By default set to bootstrap. As an "
 "exception to the normal stage names, also rootfs can be used here which does "
@@ -1649,13 +1618,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:302
 #, no-wrap
 msgid "B<--checksums> md5|sha1|sha256|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:304
 msgid ""
 "defines if the binary image should contain a file called md5sums.txt, "
 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1667,26 +1636,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:304
 #, no-wrap
 msgid "B<--compression> bzip2|gzip|lzip|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:306
 msgid ""
 "defines the compression program to be used to compress tarballs. Defaults to "
 "gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:306
 #, no-wrap
 msgid "B<--build-with-chroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:308
 msgid ""
 "defines whetever live-build should use the tools from within the chroot to "
 "build the binary image or not by using and including the host systems tools. "
@@ -1701,13 +1670,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:308
 #, no-wrap
 msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:310
 msgid ""
 "defines which filesystem type should be used for the root filesystem image. "
 "If you use plain, then no filesystem image is created and the root "
@@ -1718,39 +1687,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:310
 #, no-wrap
 msgid "B<--clean>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:312
 msgid ""
 "minimizes config directory by automatically removing unused and thus empty "
 "subdirectories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:312
 #, no-wrap
 msgid "-c|B<--conffile> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:314
 msgid ""
 "using a user specified alternative configuration file in addition to the "
 "normally used one in the config directory."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:314
 #, no-wrap
 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:316
 msgid ""
 "defines what value the debconf frontend should be set to inside the chroot. "
 "Note that setting it to anything by noninteractive, which is the default, "
@@ -1758,13 +1727,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:316
 #, no-wrap
 msgid "B<--debconf-nowarnings> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:318
 msgid ""
 "defines if warnings of debconf should be displayed or not. Warnings from "
 "debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1772,13 +1741,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:318
 #, no-wrap
 msgid "B<--debconf-priority> low|medium|high|critical"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:320
 msgid ""
 "defines what value the debconf priority shoul dbe set to inside the chroot. "
 "By default, it is set to critical, which means that almost no questions are "
@@ -1787,13 +1756,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:320
 #, no-wrap
 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:322
 msgid ""
 "defines which type, if any, of the debian-installer should be included in "
 "the resulting binary image. By default, no installer is included. All "
@@ -1805,13 +1774,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:322
 #, no-wrap
 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:324
 msgid ""
 "defines the distribution where the debian-installer files should be taken "
 "out from. Normally, this should be set to the same distribution as the live "
@@ -1820,26 +1789,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:324
 #, no-wrap
 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:326
 msgid ""
 "sets the filename or URL for an optionally used and included preseeding file "
 "for debian-installer."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:326
 #, no-wrap
 msgid "B<--debian-installer-gui> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:328
 msgid ""
 "defines if the debian-installer graphical GTK interface should be true or "
 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1847,60 +1816,60 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:330
 msgid "turn on debugging informational messages."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:330
 #, no-wrap
 msgid "-d|B<--distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:332
 msgid "defines the distribution of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:332
 #, no-wrap
 msgid "-d|B<--parent-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:334
 msgid ""
 "defines the parent distribution for derivatives of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:334
 #, no-wrap
 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:336
 msgid ""
 "defines the parent debian-installer distribution for derivatives of the "
 "resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:336
 #, no-wrap
 msgid "B<--dump>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:338
 msgid ""
 "prepares a report of the currently present live system configuration and the "
 "version of live-build used. This is useful to provide if you submit bug "
@@ -1909,26 +1878,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:338
 #, no-wrap
 msgid "B<--fdisk> fdisk|fdisk.dist"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:340
 msgid ""
 "sets the filename of the fdisk binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:342
 msgid ""
 "forces re-execution of already run stages. Use only if you know what you are "
 "doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1936,26 +1905,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:342
 #, no-wrap
 msgid "B<--grub-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:344
 msgid ""
 "defines the name of an optional to be included splash screen graphic for the "
 "grub bootloader."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:344
 #, no-wrap
 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:346
 msgid ""
 "defines the default options that will be appended to (almost) every gzip "
 "call during the building of the image. By default, this is set to --best to "
@@ -1964,13 +1933,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:346
 #, no-wrap
 msgid "B<--hooks> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:348
 msgid ""
 "defines which hooks available in /usr/share/live/build/examples/hooks should "
 "be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1978,24 +1947,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:348
 #, no-wrap
 msgid "B<--hostname> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:350
 msgid "sets the hostname of the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:350
 #, no-wrap
 msgid "B<--ignore-system-defaults>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:352
 msgid ""
 "B<lb config> by default reads system defaults from /etc/live/build.conf and /"
 "etc/live/build.d when generating a new live system config directory. This is "
@@ -2004,13 +1973,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:352
 #, no-wrap
 msgid "B<--includes> I<PATH|none>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:354
 msgid ""
 "sets the path to the includes that live-build is going to use, e.g. "
 "additional minimal documentation that you want to have on all live systems. "
@@ -2019,13 +1988,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:354
 #, no-wrap
 msgid "B<--initramfs> auto|none|live-boot|casper"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:356
 msgid ""
 "sets the name of package that contains the live system specific initramfs "
 "modification. By default, auto is used, which means that at build time of "
@@ -2036,13 +2005,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:356
 #, no-wrap
 msgid "B<--interactive> shell"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:358
 msgid ""
 "defines if after the chroot stage and before the beginning of the binary "
 "stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2056,24 +2025,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:358
 #, no-wrap
 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:360
 msgid "defines options to pass to isohybrid."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:360
 #, no-wrap
 msgid "B<--iso-application> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:362
 msgid ""
 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
 "defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2081,13 +2050,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:362
 #, no-wrap
 msgid "B<--iso-preparer> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:364
 msgid ""
 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2096,13 +2065,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:364
 #, no-wrap
 msgid "B<--iso-publisher> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:366
 msgid ""
 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
 "default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2111,13 +2080,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:366
 #, no-wrap
 msgid "B<--iso-volume> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:368
 msgid ""
 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2126,13 +2095,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:368
 #, no-wrap
 msgid "B<--jffs2-eraseblock> I<SIZE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:370
 msgid ""
 "sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
 "filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2142,26 +2111,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:370
 #, no-wrap
 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:372
 msgid ""
 "sets the keyring package or additional keyring packages. By default this is "
 "set to debian-archive-keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:372
 #, no-wrap
 msgid "-l|B<--language> I<LANGUAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:374
 msgid ""
 "sets the language of a live system by installing l10n related packages. It "
 "doesn't enable generation of the correct locales through setting the right "
@@ -2169,26 +2138,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:374
 #, no-wrap
 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:376
 msgid ""
 "sets the kernel flavours to be installed. Note that in case you specify more "
 "than that the first will be configured the default kernel that gets booted."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:376
 #, no-wrap
 msgid "B<--linux-packages> \"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:378
 msgid ""
 "sets the internal name of the kernel packages naming scheme. If you use "
 "debian kernel packages, you will not have to adjust it. If you decide to use "
@@ -2202,26 +2171,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:378
 #, no-wrap
 msgid "B<--losetup> losetup|losetup.orig"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:380
 msgid ""
 "sets the filename of the losetup binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:380
 #, no-wrap
 msgid "B<--memtest> memtest86+|memtest86|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:382
 msgid ""
 "defines if memtest, memtest86+ or no memory tester at all should be included "
 "as secondary bootloader configuration. This is only available on amd64 and "
@@ -2229,13 +2198,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:382
 #, no-wrap
 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:384
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2243,13 +2212,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:384
 #, no-wrap
 msgid "B<--parent-mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:386
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages in order to build the live system. By default, this is set to "
@@ -2257,13 +2226,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:386
 #, no-wrap
 msgid "B<--parent-mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:388
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages in order to build the live system. By default, this "
@@ -2271,13 +2240,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:388
 #, no-wrap
 msgid "B<--parent-mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:390
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages in order to build the live system. By default, this is set to "
@@ -2285,13 +2254,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:390
 #, no-wrap
 msgid "B<--parent-mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:392
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages in order to build the live system. By default, this points "
@@ -2299,13 +2268,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:392
 #, no-wrap
 msgid "B<--parent-mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:394
 msgid ""
 "sets the location of the debian package mirror that should end up configured "
 "in the final image and which is the one a user would see and use. This has "
@@ -2315,13 +2284,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:394
 #, no-wrap
 msgid "B<--parent-mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:396
 msgid ""
 "sets the location of the debian security package mirror that should end up "
 "configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2329,13 +2298,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:396
 #, no-wrap
 msgid "B<--parent-mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:398
 msgid ""
 "sets the location of the debian volatile package mirror that should end up "
 "configured in the final image. By default, the value of --parent-mirror-"
@@ -2343,13 +2312,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:402
+#: en/lb_config.1:398
 #, no-wrap
 msgid "B<--parent-mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:400
 msgid ""
 "sets the location of the debian backports package mirror that should end up "
 "configured in the final image. By default, 'http://backports.debian.org/"
@@ -2357,13 +2326,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:400
 #, no-wrap
 msgid "B<--parent-mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:402
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images. By default, this points to the same mirror used to build "
@@ -2371,13 +2340,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:402
 #, no-wrap
 msgid "B<--mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:404
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
@@ -2385,13 +2354,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:404
 #, no-wrap
 msgid "B<--mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:406
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages of the derivative in order to build the live system. By "
@@ -2399,13 +2368,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:410
+#: en/lb_config.1:406
 #, no-wrap
 msgid "B<--mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:408
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages of the derivative in order to build the live system. By "
@@ -2413,13 +2382,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:408
 #, no-wrap
 msgid "B<--mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:410
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages of the derivative in order to build the live system. By "
@@ -2427,13 +2396,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:410
 #, no-wrap
 msgid "B<--mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:412
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages of the derivative in order to build the live system. By "
@@ -2441,13 +2410,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:412
 #, no-wrap
 msgid "B<--mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:414
 msgid ""
 "sets the location of the derivative package mirror that should end up "
 "configured in the final image and which is the one a user would see and use. "
@@ -2457,52 +2426,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:414
 #, no-wrap
 msgid "B<--mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:416
 msgid ""
 "sets the location of the derivatives security package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:420
+#: en/lb_config.1:416
 #, no-wrap
 msgid "B<--mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:418
 msgid ""
 "sets the location of the derivatives volatile package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:422
+#: en/lb_config.1:418
 #, no-wrap
 msgid "B<--mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:424
+#: en/lb_config.1:420
 msgid ""
 "sets the location of the derivatives backports package mirror that should "
 "end up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:424
+#: en/lb_config.1:420
 #, no-wrap
 msgid "B<--mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:426
+#: en/lb_config.1:422
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images of the derivative. By default, this points to the same "
@@ -2510,52 +2479,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:426
+#: en/lb_config.1:422
 #, no-wrap
 msgid "B<--mode> debian|emdebian|ubuntu"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:428
+#: en/lb_config.1:424
 msgid ""
 "defines a global mode to load project specific defaults. By default this is "
 "set to debian."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:428
+#: en/lb_config.1:424
 #, no-wrap
 msgid "B<--net-root-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:430
+#: en/lb_config.1:426
 msgid ""
 "defines the filesystem that will be configured in the bootloader "
 "configuration for your netboot image. This defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:430
+#: en/lb_config.1:426
 #, no-wrap
 msgid "B<--net-root-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:432
+#: en/lb_config.1:428
 msgid ""
 "sets additional options for mounting the root filesystem in netboot images "
 "and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:432
+#: en/lb_config.1:428
 #, no-wrap
 msgid "B<--net-root-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:434
+#: en/lb_config.1:430
 msgid ""
 "sets the file path that will be configured in the bootloader configuration "
 "for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2564,13 +2533,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:434
+#: en/lb_config.1:430
 #, no-wrap
 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:436
+#: en/lb_config.1:432
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the root filesystem of your netboot image. This defaults "
@@ -2578,38 +2547,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:436
+#: en/lb_config.1:432
 #, no-wrap
 msgid "B<--net-cow-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:438
+#: en/lb_config.1:434
 msgid ""
 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:438
+#: en/lb_config.1:434
 #, no-wrap
 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:440
+#: en/lb_config.1:436
 msgid ""
 "sets additional options for mounting the copy-on-write layer in netboot "
 "images and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:440
+#: en/lb_config.1:436
 #, no-wrap
 msgid "B<--net-cow-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:442
+#: en/lb_config.1:438
 msgid ""
 "defines the path to client writable filesystem. Anywhere that "
 "I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2617,28 +2586,28 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:441
 msgid "Example:"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:443
 msgid "/export/hosts/client_mac_address"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:445
 msgid "/export/hosts/00-16-D3-33-92-E8"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:445
 #, no-wrap
 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:447
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2646,13 +2615,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:447
 #, no-wrap
 msgid "B<--net-tarball> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:449
 msgid ""
 "defines if a compressed tarball should be created. Disabling this options "
 "leads to no tarball at all, the plain binary directory is considered the "
@@ -2660,13 +2629,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:449
 #, no-wrap
 msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:451
 msgid ""
 "defines which lists available in /usr/share/live/build/lists should be used. "
 "By default, this is set to standard. Note that in case you have local "
@@ -2676,13 +2645,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:451
 #, no-wrap
 msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:453
 msgid ""
 "defines one or more packages to be installed in the live system. This is a "
 "quick and convenient place to add a few packages when building an image "
@@ -2691,37 +2660,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457 en/live-build.7:40
+#: en/lb_config.1:453 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:455
 msgid "reduces the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:455
 #, no-wrap
 msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:457
 msgid ""
 "enables one of available third-party repository configurations in /usr/share/"
 "live/build/repositories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:457
 #, no-wrap
 msgid "B<--root-command> sudo"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:459
 msgid ""
 "controls if live-build should use sudo internally to build the live image. "
 "Note that this is not well tested and that you should, when relying on sudo, "
@@ -2729,13 +2698,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:463
+#: en/lb_config.1:459
 #, no-wrap
 msgid "B<--use-fakeroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:461
 msgid ""
 "controls if live-build should utilize fakeroot and fakechroot to try and "
 "avoid requiring root privillages where possible. By default, this option is "
@@ -2743,13 +2712,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:461
 #, no-wrap
 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:463
 msgid ""
 "defines which package archive areas of a debian packages archive should be "
 "used for configured debian package mirrors. By default, this is set to main. "
@@ -2759,26 +2728,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:463
 #, no-wrap
 msgid "B<--security> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:465
 msgid ""
 "defines if the security repositories specified in the security mirror "
 "options should be used or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:465
 #, no-wrap
 msgid "B<--source> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:467
 msgid ""
 "defines if a corresponding source image to the binary image should be build. "
 "By default this is false because most people do not require this and would "
@@ -2788,37 +2757,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:471
+#: en/lb_config.1:467
 #, no-wrap
 msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:469
 msgid "defines the image type for the source image. Default is tar."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:469
 #, no-wrap
 msgid "B<--syslinux-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:475
+#: en/lb_config.1:471
 msgid ""
 "defines the file of the syslinux splash graphic that should be used instead "
 "of the default one."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:475
+#: en/lb_config.1:471
 #, no-wrap
 msgid "B<--syslinux-timeout> I<SECONDS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:477
+#: en/lb_config.1:473
 msgid ""
 "defines the timeout the syslinux bootloader should wait for input from the "
 "user at the bootprompt prior booting the default kernel. This defaults to 0 "
@@ -2826,38 +2795,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:477
+#: en/lb_config.1:473
 #, no-wrap
 msgid "B<--syslinux-menu> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:479
+#: en/lb_config.1:475
 msgid ""
 "defines if syslinux should be make use of the vgamenu capabilities or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:479
+#: en/lb_config.1:475
 #, no-wrap
 msgid "B<--tasksel> apt|aptitude|tasksel"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:481
+#: en/lb_config.1:477
 msgid ""
 "selects which program is used to install tasks. By default, this is set to "
 "tasksel."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:481
+#: en/lb_config.1:477
 #, no-wrap
 msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:483
+#: en/lb_config.1:479
 msgid ""
 "defines one or more package tasks to be installed in the live system. This "
 "is a quick and convenient way to get a reasonable default selection of "
@@ -2867,26 +2836,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:483
+#: en/lb_config.1:479
 #, no-wrap
 msgid "B<--templates> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:485
+#: en/lb_config.1:481
 msgid ""
 "sets the path to the templates that live-build is going to use, e.g. for "
 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:481
 #, no-wrap
 msgid "B<--virtual-root-size> MB"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:487
+#: en/lb_config.1:483
 msgid ""
 "defines what size the virtual-hdd image should be. Note that although the "
 "default is set to 10000 (= 10GB), it will not need 10GB space on your "
@@ -2894,39 +2863,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487
+#: en/lb_config.1:483
 #, no-wrap
 msgid "B<--volatile> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:489
+#: en/lb_config.1:485
 msgid ""
 "defines if debian volatile package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:489
+#: en/lb_config.1:485
 #, no-wrap
 msgid "B<--backports> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:491
+#: en/lb_config.1:487
 msgid ""
 "defines if debian backports package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:491
+#: en/lb_config.1:487
 #, no-wrap
 msgid "B<--exposed-root> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:493
+#: en/lb_config.1:489
 msgid ""
 "defines whether to expose the root filesystem as read only and not covered "
 "by the union filesystem. This has useful implications for certain speciality "
@@ -2934,48 +2903,48 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:493
+#: en/lb_config.1:489
 #, no-wrap
 msgid "B<--username> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:495
+#: en/lb_config.1:491
 msgid "sets the name of the account of the default user in the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:495 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:497
+#: en/lb_config.1:493
 msgid "increases the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:497
+#: en/lb_config.1:493
 #, no-wrap
 msgid "B<--win32-loader true|false>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:500
+#: en/lb_config.1:496
 msgid "defines if win32-loader should be included in the binary image or not."
 msgstr ""
 
 #. type: SH
-#: en/lb_config.1:501
+#: en/lb_config.1:497
 #, no-wrap
 msgid "ENVIRONMENT"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:504
+#: en/lb_config.1:500
 msgid ""
 "Currently, command line switches can also be specified through the "
 "corresponding environment variable. However, this generally should not be "
@@ -2989,20 +2958,20 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:508
+#: en/lb_config.1:504
 #, no-wrap
 msgid "B<auto/config>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:509
+#: en/lb_config.1:505
 #, no-wrap
 msgid "B</etc/live/build.conf, /etc/live/build.d>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:512
+#: en/lb_config.1:508
 msgid ""
 "An optional, global configuration file for B<lb config> variables. It is "
 "useful to specify a few system wide defaults, like "
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index 5861f8a..d7ae92c 100644
--- a/manpages/pot/lb_local.1.pot
+++ b/manpages/pot/lb_local.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index 4a33fc7..dc92514 100644
--- a/manpages/pot/lb_source.1.pot
+++ b/manpages/pot/lb_source.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index 153a1aa..8183c78 100644
--- a/manpages/pot/lb_source_checksums.1.pot
+++ b/manpages/pot/lb_source_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index 23ba17d..f2a6985 100644
--- a/manpages/pot/lb_source_debian-live.1.pot
+++ b/manpages/pot/lb_source_debian-live.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index 5715994..468b819 100644
--- a/manpages/pot/lb_source_debian.1.pot
+++ b/manpages/pot/lb_source_debian.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index 81eaea0..61193b8 100644
--- a/manpages/pot/lb_source_disk.1.pot
+++ b/manpages/pot/lb_source_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index 6b3dff6..23c4a57 100644
--- a/manpages/pot/lb_source_iso.1.pot
+++ b/manpages/pot/lb_source_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot
index fa79b40..c3224df 100644
--- a/manpages/pot/lb_source_net.1.pot
+++ b/manpages/pot/lb_source_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index bc3a1fc..f8559d2 100644
--- a/manpages/pot/lb_source_tar.1.pot
+++ b/manpages/pot/lb_source_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_usb.1.pot b/manpages/pot/lb_source_usb.1.pot
index 4525157..4d7695a 100644
--- a/manpages/pot/lb_source_usb.1.pot
+++ b/manpages/pot/lb_source_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index c4d4bea..9b473d4 100644
--- a/manpages/pot/lb_source_virtual-hdd.1.pot
+++ b/manpages/pot/lb_source_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -453,23 +448,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -490,23 +484,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -529,23 +522,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -566,23 +558,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -606,23 +597,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -643,23 +633,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -681,21 +670,21 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
-#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
-#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19 en/lb_chroot_tasks.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
+#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
+#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
+#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-packages.1:19
+#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
+#: en/lb_chroot_localization.1:19 en/lb_chroot_packagelists.1:19
+#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
+#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
+#: en/lb_chroot_sources.1:19 en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
+#: en/lb_chroot_tasks.1:19 en/lb_chroot_upstart.1:19
+#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
+#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index e029d24..3c88148 100644
--- a/manpages/pot/lb_testroot.1.pot
+++ b/manpages/pot/lb_testroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -351,23 +349,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -388,23 +385,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-hooks.1:23
-#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
-#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
+#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
+#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
+#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-packages.1:23
+#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
+#: en/lb_chroot_localization.1:23 en/lb_chroot_packagelists.1:23
+#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
+#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
+#: en/lb_chroot_sources.1:23 en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
+#: en/lb_chroot_tasks.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
+#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
+#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
+#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -424,23 +420,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -460,23 +455,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -497,23 +491,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -536,23 +529,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -573,23 +565,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -613,23 +604,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -650,23 +640,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index c883d27..1b40b2a 100644
--- a/manpages/pot/live-build.7.pot
+++ b/manpages/pot/live-build.7.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-05-18 19:50+0300\n"
+"POT-Creation-Date: 2011-06-03 11:59+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,18 +31,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -65,23 +65,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-05-18"
+msgid "2011-06-03"
 msgstr ""
 
 #. type: TH
@@ -99,23 +99,23 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a17"
+msgid "3.0~a18"
 msgstr ""
 
 #. type: TH
@@ -133,18 +133,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_cache.1:1
 #: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-hooks.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
-#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
+#: en/lb_chroot_local-packages.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_localization.1:1
+#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
+#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_tasks.1:1 en/lb_chroot_upstart.1:1
+#: en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -167,18 +167,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_cache.1:3
 #: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-hooks.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
-#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
-#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
+#: en/lb_chroot_local-packages.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_localization.1:3
+#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
+#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_tasks.1:3 en/lb_chroot_upstart.1:3
+#: en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
+#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,18 +201,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_cache.1:6
 #: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-hooks.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
-#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
-#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
+#: en/lb_chroot_local-packages.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_localization.1:6
+#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
+#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_tasks.1:6 en/lb_chroot_upstart.1:6
+#: en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
+#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -235,18 +235,18 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_cache.1:9
 #: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-hooks.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
-#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
-#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
+#: en/lb_chroot_local-packages.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_localization.1:9
+#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
+#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9
+#: en/lb_clean.1:9 en/lb_config.1:245 en/lb_local.1:9 en/lb_source.1:9
+#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -270,23 +270,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-hooks.1:14
-#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
-#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
+#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
+#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
+#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-packages.1:14
+#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
+#: en/lb_chroot_localization.1:14 en/lb_chroot_packagelists.1:14
+#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
+#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
+#: en/lb_chroot_sources.1:14 en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
+#: en/lb_chroot_tasks.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
+#: en/lb_config.1:254 en/lb_local.1:14 en/lb_source.1:14
+#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
+#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -307,23 +306,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-hooks.1:17
-#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
-#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:233
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
+#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
+#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
+#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-packages.1:17
+#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
+#: en/lb_chroot_localization.1:17 en/lb_chroot_packagelists.1:17
+#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
+#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
+#: en/lb_chroot_sources.1:17 en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
+#: en/lb_chroot_tasks.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
+#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
+#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
+#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:231
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -344,23 +342,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-hooks.1:21
-#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
-#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:237
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
+#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
+#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
+#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-packages.1:21
+#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
+#: en/lb_chroot_localization.1:21 en/lb_chroot_packagelists.1:21
+#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
+#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
+#: en/lb_chroot_sources.1:21 en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
+#: en/lb_chroot_tasks.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
+#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
+#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
+#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:235
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -381,23 +378,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-hooks.1:25
-#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
-#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:243
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
+#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
+#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
+#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-packages.1:25
+#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
+#: en/lb_chroot_localization.1:25 en/lb_chroot_packagelists.1:25
+#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
+#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
+#: en/lb_chroot_sources.1:25 en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
+#: en/lb_chroot_tasks.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
+#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
+#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:241
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -417,23 +413,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-hooks.1:26
-#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
-#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:244
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
+#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
+#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
+#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-packages.1:26
+#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
+#: en/lb_chroot_localization.1:26 en/lb_chroot_packagelists.1:26
+#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
+#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
+#: en/lb_chroot_sources.1:26 en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
+#: en/lb_chroot_tasks.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
+#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
+#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:242
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -454,23 +449,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-hooks.1:28
-#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
-#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:246
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
+#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
+#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
+#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-packages.1:28
+#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
+#: en/lb_chroot_localization.1:28 en/lb_chroot_packagelists.1:28
+#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
+#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
+#: en/lb_chroot_sources.1:28 en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
+#: en/lb_chroot_tasks.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
+#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
+#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:244
 msgid ""
 "More information about live-build and the Debian Live project can be found "
 "on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -493,23 +487,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-hooks.1:29
-#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
-#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:247
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
+#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
+#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
+#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-packages.1:29
+#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
+#: en/lb_chroot_localization.1:29 en/lb_chroot_packagelists.1:29
+#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
+#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
+#: en/lb_chroot_sources.1:29 en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
+#: en/lb_chroot_tasks.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
+#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
+#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:245
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -530,23 +523,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-hooks.1:31
-#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
-#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:249
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
+#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
+#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
+#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-packages.1:31
+#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
+#: en/lb_chroot_localization.1:31 en/lb_chroot_packagelists.1:31
+#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
+#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
+#: en/lb_chroot_sources.1:31 en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
+#: en/lb_chroot_tasks.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
+#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
+#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:247
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-build package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -570,23 +562,22 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-hooks.1:32
-#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
-#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:250
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
+#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
+#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
+#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-packages.1:32
+#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
+#: en/lb_chroot_localization.1:32 en/lb_chroot_packagelists.1:32
+#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
+#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
+#: en/lb_chroot_sources.1:32 en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
+#: en/lb_chroot_tasks.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
+#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
+#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:248
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -607,48 +598,47 @@ msgstr ""
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-hooks.1:33
-#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
-#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:251
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
+#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
+#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
+#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-packages.1:33
+#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
+#: en/lb_chroot_localization.1:33 en/lb_chroot_packagelists.1:33
+#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
+#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
+#: en/lb_chroot_sources.1:33 en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
+#: en/lb_chroot_tasks.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
+#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
+#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:249
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457 en/live-build.7:40
+#: en/lb_config.1:453 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:495 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
@@ -1105,614 +1095,603 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:108
 #, no-wrap
-msgid "B<lb_chroot_hooks>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:110
-msgid "execute hooks in chroot"
-msgstr ""
-
-#. type: IP
-#: en/live-build.7:110
-#, no-wrap
 msgid "B<lb_chroot_hostname>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:112
+#: en/live-build.7:110
 msgid "manage /bin/hostname"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:112
+#: en/live-build.7:110
 #, no-wrap
 msgid "B<lb_chroot_hosts>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:114
+#: en/live-build.7:112
 msgid "manage /etc/hosts"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:114
+#: en/live-build.7:112
 #, no-wrap
 msgid "B<lb_chroot_install-packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:116
+#: en/live-build.7:114
 msgid "install queued packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:116
+#: en/live-build.7:114
 #, no-wrap
 msgid "B<lb_chroot_interactive>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:118
+#: en/live-build.7:116
 msgid "make build interactive"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:118
+#: en/live-build.7:116
 #, no-wrap
 msgid "B<lb_chroot_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:120
+#: en/live-build.7:118
 msgid "manage /etc/kernel-img.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:120
+#: en/live-build.7:118
 #, no-wrap
 msgid "B<lb_chroot_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:122
+#: en/live-build.7:120
 msgid "execute local hooks in chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:122
+#: en/live-build.7:120
 #, no-wrap
 msgid "B<lb_chroot_local-includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:124
+#: en/live-build.7:122
 msgid "copy local files into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:124
+#: en/live-build.7:122
 #, no-wrap
 msgid "B<lb_chroot_localization>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:126
+#: en/live-build.7:124
 msgid "install localization packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:126
+#: en/live-build.7:124
 #, no-wrap
 msgid "B<lb_chroot_local-packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:128
+#: en/live-build.7:126
 msgid "queue install of local packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:128
+#: en/live-build.7:126
 #, no-wrap
 msgid "B<lb_chroot_local-patches>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:130
+#: en/live-build.7:128
 msgid "apply local patches against chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:130
+#: en/live-build.7:128
 #, no-wrap
 msgid "B<lb_chroot_local-preseed>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:132
+#: en/live-build.7:130
 msgid "use debconf local preseeding file"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:132
+#: en/live-build.7:130
 #, no-wrap
 msgid "B<lb_chroot_packages>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:134
+#: en/live-build.7:132
 msgid "queue install of packages into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:134
+#: en/live-build.7:132
 #, no-wrap
 msgid "B<lb_chroot_packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:136
+#: en/live-build.7:134
 msgid "queue install of package lists into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:136
+#: en/live-build.7:134
 #, no-wrap
 msgid "B<lb_chroot_preseed>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:138
+#: en/live-build.7:136
 msgid "use debconf preseeding file"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:138
+#: en/live-build.7:136
 #, no-wrap
 msgid "B<lb_chroot_proc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:140
+#: en/live-build.7:138
 msgid "mount /proc"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:140
+#: en/live-build.7:138
 #, no-wrap
 msgid "B<lb_chroot_resolv>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:142
+#: en/live-build.7:140
 msgid "manage /etc/resolv.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:142
+#: en/live-build.7:140
 #, no-wrap
 msgid "B<lb_chroot_selinuxfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:144
+#: en/live-build.7:142
 msgid "mount /selinux"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:144
+#: en/live-build.7:142
 #, no-wrap
 msgid "B<lb_chroot_sources>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:146
+#: en/live-build.7:144
 msgid "manage /etc/apt/sources.list"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:146
+#: en/live-build.7:144
 #, no-wrap
 msgid "B<lb_chroot_sysfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:148
+#: en/live-build.7:146
 msgid "mount /sys"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:148
+#: en/live-build.7:146
 #, no-wrap
 msgid "B<lb_chroot_sysv-rc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:150
+#: en/live-build.7:148
 msgid "manage /usr/sbin/policy-rc.d"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:150
+#: en/live-build.7:148
 #, no-wrap
 msgid "B<lb_chroot_tasks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:152
+#: en/live-build.7:150
 msgid "install tasks into chroot"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:152
+#: en/live-build.7:150
 #, no-wrap
 msgid "Binary commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:153
+#: en/live-build.7:151
 #, no-wrap
 msgid "B<lb_binary_chroot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:155
+#: en/live-build.7:153
 msgid "copy chroot into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:155
+#: en/live-build.7:153
 #, no-wrap
 msgid "B<lb_binary_debian-installer>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:157
+#: en/live-build.7:155
 msgid "install debian-installer into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:157
+#: en/live-build.7:155
 #, no-wrap
 msgid "B<lb_binary_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:159
+#: en/live-build.7:157
 msgid "install disk information into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:159
+#: en/live-build.7:157
 #, no-wrap
 msgid "B<lb_binary_grub>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:161
+#: en/live-build.7:159
 msgid "installs grub into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:161
+#: en/live-build.7:159
 #, no-wrap
 msgid "B<lb_binary_grub2>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:163
+#: en/live-build.7:161
 msgid "installs grub2 into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:163
+#: en/live-build.7:161
 #, no-wrap
 msgid "B<lb_binary_includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:165 en/live-build.7:173
+#: en/live-build.7:163 en/live-build.7:171
 msgid "copy files into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:165
+#: en/live-build.7:163
 #, no-wrap
 msgid "B<lb_binary_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:167
+#: en/live-build.7:165
 msgid "build iso binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:167
+#: en/live-build.7:165
 #, no-wrap
 msgid "B<lb_binary_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:169
+#: en/live-build.7:167
 msgid "install linux-image into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:169
+#: en/live-build.7:167
 #, no-wrap
 msgid "B<lb_binary_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:171
+#: en/live-build.7:169
 msgid "execute local hooks in binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:171
+#: en/live-build.7:169
 #, no-wrap
 msgid "B<lb_binary_local-includes>(1)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:173
+#: en/live-build.7:171
 #, no-wrap
 msgid "B<lb_binary_local-packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:175
+#: en/live-build.7:173
 msgid "install local package lists into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:175
+#: en/live-build.7:173
 #, no-wrap
 msgid "B<lb_binary_manifest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:177
+#: en/live-build.7:175
 msgid "create manifest"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:177
+#: en/live-build.7:175
 #, no-wrap
 msgid "B<lb_binary_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:179
+#: en/live-build.7:177
 msgid "create binary checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:179
+#: en/live-build.7:177
 #, no-wrap
 msgid "B<lb_binary_memtest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:181
+#: en/live-build.7:179
 msgid "installs a memtest into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:181
+#: en/live-build.7:179
 #, no-wrap
 msgid "B<lb_binary_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:183
+#: en/live-build.7:181
 msgid "build netboot binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:183
+#: en/live-build.7:181
 #, no-wrap
 msgid "B<lb_binary_rootfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:185
+#: en/live-build.7:183
 msgid "build rootfs image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:185
+#: en/live-build.7:183
 #, no-wrap
 msgid "B<lb_binary_silo>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:187
+#: en/live-build.7:185
 msgid "installs silo into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:187
+#: en/live-build.7:185
 #, no-wrap
 msgid "B<lb_binary_syslinux>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:189
+#: en/live-build.7:187
 msgid "installs syslinux into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:189
+#: en/live-build.7:187
 #, no-wrap
 msgid "B<lb_binary_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:191
+#: en/live-build.7:189
 msgid "build harddisk binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:191
+#: en/live-build.7:189
 #, no-wrap
 msgid "B<lb_binary_usb>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:193
+#: en/live-build.7:191
 msgid "build binary usb-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:193
+#: en/live-build.7:191
 #, no-wrap
 msgid "B<lb_binary_virtual-hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:195
+#: en/live-build.7:193
 msgid "build binary virtual-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:195
+#: en/live-build.7:193
 #, no-wrap
 msgid "B<lb_binary_win32-loader>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:197
+#: en/live-build.7:195
 msgid "installs win32-loader into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:197
+#: en/live-build.7:195
 #, no-wrap
 msgid "B<lb_binary_yaboot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:199
+#: en/live-build.7:197
 msgid "installs yaboot into binary"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:199
+#: en/live-build.7:197
 #, no-wrap
 msgid "Source commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:200
+#: en/live-build.7:198
 #, no-wrap
 msgid "B<lb_source_debian>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:202
+#: en/live-build.7:200
 msgid "download sources"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:202
+#: en/live-build.7:200
 #, no-wrap
 msgid "B<lb_source_debian-live>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:204
+#: en/live-build.7:202
 msgid "copy debian-live config into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:204
+#: en/live-build.7:202
 #, no-wrap
 msgid "B<lb_source_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:206
+#: en/live-build.7:204
 msgid "install disk information into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:206
+#: en/live-build.7:204
 #, no-wrap
 msgid "B<lb_source_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:208
+#: en/live-build.7:206
 msgid "build iso source image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:208
+#: en/live-build.7:206
 #, no-wrap
 msgid "B<lb_source_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:210
+#: en/live-build.7:208
 msgid "create source checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:210
+#: en/live-build.7:208
 #, no-wrap
 msgid "B<lb_source_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:212
+#: en/live-build.7:210
 msgid "build source net image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:212
+#: en/live-build.7:210
 #, no-wrap
 msgid "B<lb_source_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:214
+#: en/live-build.7:212
 msgid "build source tarball"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:214
+#: en/live-build.7:212
 #, no-wrap
 msgid "B<lb_source_usb>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:216
+#: en/live-build.7:214
 msgid "build source usb-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:216
+#: en/live-build.7:214
 #, no-wrap
 msgid "B<lb_source_virtual-hdd>(1)"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:219
+#: en/live-build.7:217
 msgid "build source virtual-hdd image"
 msgstr ""
 
 #. type: SH
-#: en/live-build.7:220
+#: en/live-build.7:218
 #, no-wrap
 msgid "CONFIG FILES"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:223
+#: en/live-build.7:221
 msgid ""
 "Many live-build commands make use of files in the I<config/> directory to "
 "control what they do. Besides the common I<config/common>, which is used by "
@@ -1724,7 +1703,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:225
+#: en/live-build.7:223
 msgid ""
 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
 "config/bootstrap_debootstrap to read the options it will use. See the man "
@@ -1735,7 +1714,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:227
+#: en/live-build.7:225
 msgid ""
 "Note that live-build will respect environment variables which are present in "
 "the context of the shell it is running. If variables can be read from config "
@@ -1746,7 +1725,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:229
+#: en/live-build.7:227
 msgid ""
 "In some rare cases, you may want to have different versions of these files "
 "for different architectures or distributions. If files named config/stage."
@@ -1759,7 +1738,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:232
+#: en/live-build.7:230
 msgid ""
 "All config files are shell scripts which are sourced by a live-build "
 "program. That means they have to follow the normal shell syntax. You can "
@@ -1767,23 +1746,23 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:234
+#: en/live-build.7:232
 #, no-wrap
 msgid "B</etc/live/build.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:235
+#: en/live-build.7:233
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:239
+#: en/live-build.7:237
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:241
+#: en/live-build.7:239
 msgid "I<live-config>(7)"
 msgstr ""
diff --git a/scripts/build/lb_binary b/scripts/build/lb_binary
index 0b48941..738363d 100755
--- a/scripts/build/lb_binary
+++ b/scripts/build/lb_binary
@@ -93,15 +93,15 @@ if [ "${LB_BUILD_WITH_CHROOT}" = "true" ]
 then
 	# Deconfiguring chroot
 	rm -f .stage/chroot_sources
+	lb chroot_apt remove ${*}
+	lb chroot_upstart remove ${*}
+	lb chroot_sysv-rc remove ${*}
 	lb chroot_hostname remove ${*}
 	lb chroot_resolv remove ${*}
 	lb chroot_hosts remove ${*}
 fi
 
-lb chroot_apt remove ${*}
-lb chroot_sysv-rc remove ${*}
 lb chroot_sysfs remove ${*}
-lb chroot_upstart remove ${*}
 lb chroot_selinuxfs remove ${*}
 lb chroot_proc remove ${*}
 lb chroot_devpts remove ${*}
diff --git a/scripts/build/lb_binary_chroot b/scripts/build/lb_binary_chroot
index 3ce9708..4f02e50 100755
--- a/scripts/build/lb_binary_chroot
+++ b/scripts/build/lb_binary_chroot
@@ -97,7 +97,7 @@ fi
 ${LB_ROOT_COMMAND} mv chroot.tmp chroot/chroot
 
 # Handling chroot excludes
-if [ -f config/binary_rootfs/excludes ]
+if [ -f config/binary_rootfs/excludes ] && [ "${LB_CHROOT_FILESYSTEM}" != "squashfs" ]
 then
 	case "${LB_BUILD_WITH_CHROOT}" in
 		true)
diff --git a/scripts/build/lb_binary_grub b/scripts/build/lb_binary_grub
index d796750..ee14bd9 100755
--- a/scripts/build/lb_binary_grub
+++ b/scripts/build/lb_binary_grub
@@ -243,12 +243,12 @@ then
 	INITRD_GI="install/gtk/initrd.gz"
 	APPEND_GI="video=vesa:ywrap,mtrr vga=788"
 
-	if [ -f "binary/boot/${VMLINUZ_DI}" ] && [ -f "binary/boot/${INITRD_DI}" ]
+	if [ -f "binary/${VMLINUZ_DI}" ] && [ -f "binary/${INITRD_DI}" ]
 	then
 		Grub_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
 	fi
 
-	if [ -f "binary/boot/${VMLINUZ_GI}" ] && [ -f "binary/boot/${INITRD_GI}" ]
+	if [ -f "binary/${VMLINUZ_GI}" ] && [ -f "binary/${INITRD_GI}" ]
 	then
 		Grub_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
 	fi
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs
index 2e3e34e..85785fc 100755
--- a/scripts/build/lb_binary_rootfs
+++ b/scripts/build/lb_binary_rootfs
@@ -100,7 +100,16 @@ case "${LB_CHROOT_FILESYSTEM}" in
 			rm -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
 		fi
 
-		DU_DIM="$(du -ks chroot/chroot | cut -f1)"
+		case "${LB_BUILD_WITH_CHROOT}" in
+			true)
+				DU_DIM="$(du -ks chroot/chroot | cut -f1)"
+				;;
+
+			false)
+				DU_DIM="$(du -ks chroot | cut -f1)"
+				;;
+		esac
+
 		REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LB_CHROOT_FILESYSTEM})"
 
 		RESERVED_PERCENTAGE="--reserved-percentage"
@@ -323,9 +332,18 @@ case "${LB_CHROOT_FILESYSTEM}" in
 
 		case "${LB_BUILD_WITH_CHROOT}" in
 			true)
+				if [ -e config/binary_rootfs/excludes ]
+				then
+					cp config/binary_rootfs/excludes chroot/excludes
+
+					MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -ef /excludes"
+				fi
+
 				# Create image
 				Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
 
+				rm -f chroot/chroot/excludes
+
 				case "${LB_MODE}" in
 					ubuntu)
 						du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
@@ -384,6 +402,11 @@ case "${LB_CHROOT_FILESYSTEM}" in
 				;;
 
 			false)
+				if [ -e config/binary_rootfs/excludes ]
+				then
+					MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -ef config/binary_rootfs/excludes"
+				fi
+
 				mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
 
 				case "${LB_MODE}" in
diff --git a/scripts/build/lb_bootstrap_cdebootstrap b/scripts/build/lb_bootstrap_cdebootstrap
index 0c621cd..42031ac 100755
--- a/scripts/build/lb_bootstrap_cdebootstrap
+++ b/scripts/build/lb_bootstrap_cdebootstrap
@@ -58,11 +58,6 @@ then
 	CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --arch=${LB_ARCHITECTURES}"
 fi
 
-if [ -n "${LB_BOOTSTRAP_CONFIG}" ]
-then
-	CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --suite-config=${LB_BOOTSTRAP_CONFIG}"
-fi
-
 if [ -n "${LB_BOOTSTRAP_INCLUDE}" ]
 then
 	CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --include=$(echo ${LB_BOOTSTRAP_INCLUDE} | sed 's|  *|,|g')"
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap
index ba5ad2e..bcc0980 100755
--- a/scripts/build/lb_bootstrap_debootstrap
+++ b/scripts/build/lb_bootstrap_debootstrap
@@ -64,16 +64,6 @@ then
 	DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --components=$(echo ${LB_ARCHIVE_AREAS} | sed -e 's| |,|g')"
 fi
 
-if [ -n "${LB_BOOTSTRAP_CONFIG}" ]
-then
-	if [ -d "/usr/share/debootstrap/scripts/" ]
-	then
-		LB_DEBOOTSTRAP_SCRIPT="/usr/share/debootstrap/scripts/${LB_BOOTSTRAP_CONFIG}"
-	else
-		LB_DEBOOTSTRAP_SCRIPT="/usr/lib/debootstrap/scripts/${LB_BOOTSTRAP_CONFIG}"
-	fi
-fi
-
 if [ -n "${LB_BOOTSTRAP_INCLUDE}" ]
 then
 	DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --include=$(echo ${LB_BOOTSTRAP_INCLUDE} | sed 's|  *|,|g')"
@@ -124,7 +114,7 @@ then
 		fi
 
 		Echo_breakage "Running debootstrap (download-only)... "
-		${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
+		${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
 
 		if [ -n "${LB_ROOT_COMMAND}" ]
 		then
@@ -140,7 +130,7 @@ then
 	fi
 
 	Echo_breakage "Running debootstrap... "
-	${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
+	${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
 
 	if [ -n "${LB_ROOT_COMMAND}" ]
 	then
diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot
index bca01d1..8e57535 100755
--- a/scripts/build/lb_chroot
+++ b/scripts/build/lb_chroot
@@ -65,7 +65,6 @@ lb chroot_localization ${*}
 lb chroot_local-includes ${*}
 lb chroot_local-patches ${*}
 lb chroot_local-hooks ${*}
-lb chroot_hooks ${*}
 lb chroot_hacks ${*}
 lb chroot_interactive ${*}
 
diff --git a/scripts/build/lb_chroot_hooks b/scripts/build/lb_chroot_hooks
deleted file mode 100755
index 0251b35..0000000
--- a/scripts/build/lb_chroot_hooks
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2011 Daniel Baumann <daniel at debian.org>
-##
-## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
-## This is free software, and you are welcome to redistribute it
-## under certain conditions; see COPYING for details.
-
-
-set -e
-
-# Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
-
-# Setting static variables
-DESCRIPTION="$(Echo 'execute hooks in chroot')"
-HELP=""
-USAGE="${PROGRAM} [--force]"
-
-Arguments "${@}"
-
-# Reading configuration files
-Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
-Set_defaults
-
-Echo_message "Begin executing hooks..."
-
-# Requiring stage file
-Require_stagefile .stage/config .stage/bootstrap
-
-# Checking stage file
-Check_stagefile .stage/chroot_hooks
-
-# Checking lock file
-Check_lockfile .lock
-
-# Creating lock file
-Create_lockfile .lock
-
-# Processing hooks
-HOOKS="$(echo ${LB_HOOKS} ${LB_PACKAGE_LISTS} ${LB_TASKS} | sed -e 's| |\n|g' | sort -u)"
-
-for HOOK in ${HOOKS}
-do
-	if [ -f ${LB_BASE:-/usr/share/live/build}/hooks/"${HOOK}" ]
-	then
-		# Copying hook
-		cp ${LB_BASE:-/usr/share/live/build}/hooks/"${HOOK}" chroot/root
-
-		# Making hook executable
-		if [ ! -x chroot/root/"${HOOK}" ]
-		then
-			chmod +x chroot/root/"${HOOK}"
-		fi
-
-		# Executing hook
-		Chroot chroot "./root/${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
-
-		# Removing hook
-		rm -f chroot/root/"${HOOK}"
-
-		# Creating stage file
-		Create_stagefile .stage/chroot_hooks
-	fi
-done
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index 0e36240..ecab5a0 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -45,7 +45,6 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--bootappend-live PARAMETER|\"PARAMETERS\"]\n\
 \t    [--bootloader grub|syslinux|yaboot]\n\
 \t    [--bootstrap cdebootstrap|cdebootstrap-static|debootstrap|copy]\n\
-\t    [--bootstrap-config FILE]\n\
 \t    [-f|--bootstrap-flavour minimal|standard]\n\
 \t    [--bootstrap-keyring PACKAGE]\n\
 \t    [--cache true|false]\n\
@@ -152,7 +151,7 @@ Local_arguments ()
 		apt-pipeline:,apt-recommends:,apt-secure:,bootstrap:,cache:,cache-indices:,cache-packages:,
 		cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump,
 		initramfs:,initsystem:,fdisk:,losetup:,mode:,repositories:,root-command:,use-fakeroot:,tasksel:,includes:,
-		templates:,architectures:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean,
+		templates:,architectures:,bootstrap-flavour:,bootstrap-keyring:,clean,
 		distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-volatile:,parent-mirror-chroot-backports:,parent-mirror-binary:,
 		parent-mirror-binary-security:,parent-mirror-binary-volatile:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
 		mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-chroot-backports:,mirror-binary:,
@@ -376,11 +375,6 @@ Local_arguments ()
 				shift 2
 				;;
 
-			--bootstrap-config)
-				LB_BOOTSTRAP_CONFIG="${2}"
-				shift 2
-				;;
-
 			-f|--bootstrap-flavour)
 				LB_BOOTSTRAP_FLAVOUR="${2}"
 				shift 2
@@ -1022,10 +1016,6 @@ cat > config/bootstrap << EOF
 # (Default: autodetected)
 LB_ARCHITECTURES="${LB_ARCHITECTURES}"
 
-# \$LB_BOOTSTRAP_CONFIG: set distribution config directory
-# (Default: empty)
-LB_BOOTSTRAP_CONFIG="${LB_BOOTSTRAP_CONFIG}"
-
 # \$LB_BOOTSTRAP_INCLUDE: include packages on base
 # (Default: empty)
 LB_BOOTSTRAP_INCLUDE="${LB_BOOTSTRAP_INCLUDE}"

-- 
live-build



More information about the debian-live-changes mailing list