[SCM] live-helper branch, upstream, updated. upstream/2.0_a16-1-ge8c7524

Daniel Baumann daniel at debian.org
Mon Jul 5 12:16:19 UTC 2010


The following commit has been merged in the upstream branch:
commit e8c75243e8f09d401fc29b41049b56ce2f2a9d4e
Author: Daniel Baumann <daniel at debian.org>
Date:   Fri Jul 2 18:26:15 2010 +0200

    Adding upstream version 2.0~a17.

diff --git a/cgi/cgi b/cgi/cgi
index da40e11..1e127b8 100755
--- a/cgi/cgi
+++ b/cgi/cgi
@@ -7,6 +7,9 @@
 # This is free software, and you are welcome to redistribute it
 # under certain conditions; see COPYING for details.
 
+# Including common functions
+. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
+
 # Reading defaults
 if [ -r /etc/default/live-helper.cgi ]
 then
@@ -80,7 +83,8 @@ else
 
 	# Advanced binary options
 	LH_BINARY_INDICES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])binary_indices=[a-z]+' | cut -f 2 -d '=' | head -n1)
-	LH_BOOTAPPEND=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
+	LH_BOOTAPPEND_INSTALL=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend_install=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
+	LH_BOOTAPPEND_LIVE=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend_live=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
 	LH_BOOTLOADER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootloader=[a-z]+' | cut -f 2 -d '=' | head -n1)
 	LH_DEBIAN_INSTALLER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])debian_installer=[a-z]+' | cut -f 2 -d '=' | head -n1)
 	LH_ENCRYPTION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])encryption=[0-9a-z]+' | cut -f 2 -d '=' | head -n1)
@@ -141,7 +145,8 @@ else
 	    -e "s/LH_SYMLINKS/${LH_SYMLINKS}/" \
 	    -e "s/LH_SYSVINIT/${LH_SYSVINIT}/" \
 	    -e "s/LH_BINARY_INDICES/${LH_BINARY_INDICES}/" \
-	    -e "s#LH_BOOTAPPEND#${LH_BOOTAPPEND}#" \
+	    -e "s#LH_BOOTAPPEND_INSTALL#${LH_BOOTAPPEND_INSTALL}#" \
+	    -e "s#LH_BOOTAPPEND_LIVE#${LH_BOOTAPPEND_LIVE}#" \
 	    -e "s/LH_BOOTLOADER/${LH_BOOTLOADER}/" \
 	    -e "s/LH_DEBIAN_INSTALLER/${LH_DEBIAN_INSTALLER}/" \
 	    -e "s/LH_ENCRYPTION/${LH_ENCRYPTION}/" \
@@ -192,7 +197,8 @@ LH_SYSVINIT="${LH_SYSVINIT}"
 
 # Advanced binary options
 LH_BINARY_INDICES="${LH_BINARY_INDICES}"
-LH_BOOTAPPEND="${LH_BOOTAPPEND}"
+LH_BOOTAPPEND_INSTALL="${LH_BOOTAPPEND_INSTALL}"
+LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE}"
 LH_BOOTLOADER="${LH_BOOTLOADER}"
 LH_DEBIAN_INSTALLER="${LH_DEBIAN_INSTALLER}"
 LH_ENCRYPTION="${LH_ENCRYPTION}"
@@ -217,7 +223,7 @@ LH_REPOSITORIES="${LH_REPOSITORIES}"
 EOF
 
 	echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper.cgi: add web build (${_BUILD})." >> /var/log/live
-	echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper.cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LH_BINARY_IMAGES}|distribution ${LH_DISTRIBUTION}|packages_lists ${LH_PACKAGES_LISTS}|packages ${LH_PACKAGES}|architecture ${LH_ARCHITECTURE}|mirror_bootstrap_security ${LH_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LH_MIRROR_BOOTSTRAP}|mirror_binary_security ${LH_MIRROR_BINARY_SECURITY}|mirror_binary ${LH_MIRROR_BINARY}|archive_areas ${LH_ARCHIVE_AREAS}|chroot_filesystem ${LH_CHROOT_FILESYSTEM}|linux_flavours ${LH_LINUX_FLAVOURS}|security ${LH_SECURITY}|symlinks ${LH_SYMLINKS}|sysvinit ${LH_SYSVINIT}|binary_indices ${LH_BINARY_INDICES}|bootappend ${LH_BOOTAPPEND}|bootloader ${LH_BOOTLOADER}|debian_installer ${LH_DEBIAN_INSTALLER}|encryption ${LH_ENCRYPTION}|iso_application ${LH_ISO_APPLICATION}|iso_preparer ${LH_ISO_PREPARER}|iso_publisher ${LH_ISO_PUBLISHER}|iso_volume ${LH_ISO_VOLUME}|memtest ${LH_MEMTEST}|net_path ${LH_NET_ROOT_PATH}|net_server ${LH_NET_ROOT_SERVER}
 |source_images ${LH_SOURCE_IMAGES}|source ${LH_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live
+	echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper.cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LH_BINARY_IMAGES}|distribution ${LH_DISTRIBUTION}|packages_lists ${LH_PACKAGES_LISTS}|packages ${LH_PACKAGES}|architecture ${LH_ARCHITECTURE}|mirror_bootstrap_security ${LH_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LH_MIRROR_BOOTSTRAP}|mirror_binary_security ${LH_MIRROR_BINARY_SECURITY}|mirror_binary ${LH_MIRROR_BINARY}|archive_areas ${LH_ARCHIVE_AREAS}|chroot_filesystem ${LH_CHROOT_FILESYSTEM}|linux_flavours ${LH_LINUX_FLAVOURS}|security ${LH_SECURITY}|symlinks ${LH_SYMLINKS}|sysvinit ${LH_SYSVINIT}|binary_indices ${LH_BINARY_INDICES}|bootappend_install ${LH_BOOTAPPEND_INSTALL}|bootappend_live ${LH_BOOTAPPEND_LIVE}|bootloader ${LH_BOOTLOADER}|debian_installer ${LH_DEBIAN_INSTALLER}|encryption ${LH_ENCRYPTION}|iso_application ${LH_ISO_APPLICATION}|iso_preparer ${LH_ISO_PREPARER}|iso_publisher ${LH_ISO_PUBLISHER}|iso_volume ${LH_ISO_VOLUME}|memtest ${LH_MEMTEST}|net_pat
 h ${LH_NET_ROOT_PATH}|net_server ${LH_NET_ROOT_SERVER}|source_images ${LH_SOURCE_IMAGES}|source ${LH_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live
 fi
 
 sed -e "s/VERSION/${VERSION}/" "${_TEMPLATES}"/footer.html
diff --git a/functions/common.sh b/functions/common.sh
index 7afa4c7..2c55854 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
 
 PROGRAM="$(basename ${0})"
 PACKAGE="live-helper"
-VERSION="2.0~a16-1"
+VERSION="2.0~a17-1"
 CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
 
 PATH="${PWD}/auto/helpers:${PATH}"
diff --git a/helpers/binary_linux-image b/helpers/binary_linux-image
index e82ec10..c383a22 100755
--- a/helpers/binary_linux-image
+++ b/helpers/binary_linux-image
@@ -50,6 +50,10 @@ case "${LH_INITRAMFS}" in
 	live-initramfs)
 		DESTDIR="binary/live"
 		;;
+
+	*)
+		DESTDIR="binary/boot"
+		;;
 esac
 
 case "${LH_ARCHITECTURE}" in
diff --git a/helpers/binary_rootfs b/helpers/binary_rootfs
index ac2b1e7..7aa4fb7 100755
--- a/helpers/binary_rootfs
+++ b/helpers/binary_rootfs
@@ -111,6 +111,12 @@ case "${LH_CHROOT_FILESYSTEM}" in
 				# Move image
 				mv chroot/filesystem.${LH_CHROOT_FILESYSTEM} binary/${INITFS}
 
+				case "${LH_MODE}" in
+					ubuntu)
+						du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
+						;;
+				esac
+
 				if [ -e chroot/chroot.cache ]
 				then
 					rm -f .lock
@@ -308,6 +314,12 @@ case "${LH_CHROOT_FILESYSTEM}" in
 				# Create image
 				Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
 
+				case "${LH_MODE}" in
+					ubuntu)
+						du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
+						;;
+				esac
+
 				# Move image
 				${LH_ROOT_COMMAND} mv chroot/filesystem.squashfs binary/${INITFS}
 				${LH_ROOT_COMMAND} rm -f chroot/squashfs.sort
@@ -363,6 +375,12 @@ case "${LH_CHROOT_FILESYSTEM}" in
 
 			false)
 				mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
+
+				case "${LH_MODE}" in
+					ubuntu)
+						du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
+						;;
+				esac
 				;;
 		esac
 
diff --git a/helpers/binary_virtual-hdd b/helpers/binary_virtual-hdd
index 4e61c6b..1cb9755 100755
--- a/helpers/binary_virtual-hdd
+++ b/helpers/binary_virtual-hdd
@@ -70,6 +70,13 @@ if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
 then
 	mv binary-virtual.img chroot
 
+	# hack to recreate mtab from chroot_hacks if its gone for some reason
+	if ! Chroot chroot "test -s /etc/mtab"
+	then
+		Chroot chroot "rm -f /etc/mtab"
+		Chroot chroot "ln -s /proc/mounts /etc/mtab"
+	fi
+
 	case "${LH_BINARY_FILESYSTEM}" in
 		ext2)
 			Chroot chroot "mkfs.ext2 -F binary-virtual.img"
@@ -95,7 +102,8 @@ fi
 
 mkdir -p binary.tmp
 ${LH_ROOT_COMMAND} mount -o loop binary-virtual.img binary.tmp
-cp -a binary/ binary.tmp
+cp -a binary/* binary.tmp
+cp -af binary/.disk* binary.tmp
 
 ${LH_ROOT_COMMAND} umount binary.tmp
 rmdir binary.tmp
diff --git a/lists/lxde b/lists/lxde
index 4089f9b..457279d 100644
--- a/lists/lxde
+++ b/lists/lxde
@@ -4,12 +4,11 @@
 #include <standard-x11>
 
 lxde
-#if DISTRIBUTION lenny
 gdm
+#if DISTRIBUTION lenny
 lxnm
 #endif
 #if DISTRIBUTION squeeze sid
-nodm
-wicd
+network-manager-gnome
 #endif
 desktop-base
diff --git a/lists/rescue b/lists/rescue
index dfee14d..d110453 100644
--- a/lists/rescue
+++ b/lists/rescue
@@ -324,7 +324,12 @@ hostap-utils
 hostapd
 
 # Flab
+#if DISTRIBUTION lenny
 emacs22-nox
+#endif
+#if DISTRIBUTON squeeze sid
+emacs23-nox
+#endif
 build-essential gdb gfortran gnat
 
 #if ARCHITECTURE i386
diff --git a/manpages/de/lh.de.1 b/manpages/de/lh.de.1
index f2c3779..87c3e4b 100644
--- a/manpages/de/lh.de.1
+++ b/manpages/de/lh.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh\fP \- Wrapper für live\-helper Programme
diff --git a/manpages/de/lh_binary.de.1 b/manpages/de/lh_binary.de.1
index fbdb413..ba687e6 100644
--- a/manpages/de/lh_binary.de.1
+++ b/manpages/de/lh_binary.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_checksums.de.1 b/manpages/de/lh_binary_checksums.de.1
index c9cec6e..b49a3c1 100644
--- a/manpages/de/lh_binary_checksums.de.1
+++ b/manpages/de/lh_binary_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_checksums\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_chroot.de.1 b/manpages/de/lh_binary_chroot.de.1
index d7b0f3e..bf4ae74 100644
--- a/manpages/de/lh_binary_chroot.de.1
+++ b/manpages/de/lh_binary_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_chroot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_debian-installer.de.1 b/manpages/de/lh_binary_debian-installer.de.1
index 7ce2ed6..91c15cf 100644
--- a/manpages/de/lh_binary_debian-installer.de.1
+++ b/manpages/de/lh_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_debian\-installer\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_disk.de.1 b/manpages/de/lh_binary_disk.de.1
index 6e2f5f1..e2d6980 100644
--- a/manpages/de/lh_binary_disk.de.1
+++ b/manpages/de/lh_binary_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_disk\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_encryption.de.1 b/manpages/de/lh_binary_encryption.de.1
index b42b925..8d371e0 100644
--- a/manpages/de/lh_binary_encryption.de.1
+++ b/manpages/de/lh_binary_encryption.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_encryption\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_grub.de.1 b/manpages/de/lh_binary_grub.de.1
index 57d2b85..d48a46f 100644
--- a/manpages/de/lh_binary_grub.de.1
+++ b/manpages/de/lh_binary_grub.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_grub\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_grub2.de.1 b/manpages/de/lh_binary_grub2.de.1
index f33d6ea..22a6939 100644
--- a/manpages/de/lh_binary_grub2.de.1
+++ b/manpages/de/lh_binary_grub2.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_grub2\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_includes.de.1 b/manpages/de/lh_binary_includes.de.1
index 8670eb1..39ffbe3 100644
--- a/manpages/de/lh_binary_includes.de.1
+++ b/manpages/de/lh_binary_includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_iso.de.1 b/manpages/de/lh_binary_iso.de.1
index dfb78c7..2a37211 100644
--- a/manpages/de/lh_binary_iso.de.1
+++ b/manpages/de/lh_binary_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_iso\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_linux-image.de.1 b/manpages/de/lh_binary_linux-image.de.1
index 7545540..c21a7cb 100644
--- a/manpages/de/lh_binary_linux-image.de.1
+++ b/manpages/de/lh_binary_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_linux\-image\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-hooks.de.1 b/manpages/de/lh_binary_local-hooks.de.1
index cab0fe7..fc3307b 100644
--- a/manpages/de/lh_binary_local-hooks.de.1
+++ b/manpages/de/lh_binary_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_local\-hooks\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-includes.de.1 b/manpages/de/lh_binary_local-includes.de.1
index 859bf39..3ba649d 100644
--- a/manpages/de/lh_binary_local-includes.de.1
+++ b/manpages/de/lh_binary_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_local\-includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-packageslists.de.1 b/manpages/de/lh_binary_local-packageslists.de.1
index 685d235..0d71dbe 100644
--- a/manpages/de/lh_binary_local-packageslists.de.1
+++ b/manpages/de/lh_binary_local-packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_local\-packageslists\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_manifest.de.1 b/manpages/de/lh_binary_manifest.de.1
index a2dd007..5d4b9e1 100644
--- a/manpages/de/lh_binary_manifest.de.1
+++ b/manpages/de/lh_binary_manifest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_manifest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_memtest.de.1 b/manpages/de/lh_binary_memtest.de.1
index d85064e..f97e2ea 100644
--- a/manpages/de/lh_binary_memtest.de.1
+++ b/manpages/de/lh_binary_memtest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_memtest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_net.de.1 b/manpages/de/lh_binary_net.de.1
index 37e9e80..5dfb7dd 100644
--- a/manpages/de/lh_binary_net.de.1
+++ b/manpages/de/lh_binary_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_net\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_rootfs.de.1 b/manpages/de/lh_binary_rootfs.de.1
index 6aac1a1..5abc488 100644
--- a/manpages/de/lh_binary_rootfs.de.1
+++ b/manpages/de/lh_binary_rootfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_rootfs\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_silo.de.1 b/manpages/de/lh_binary_silo.de.1
index fed63f1..f8da854 100644
--- a/manpages/de/lh_binary_silo.de.1
+++ b/manpages/de/lh_binary_silo.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_silo\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_syslinux.de.1 b/manpages/de/lh_binary_syslinux.de.1
index 4587e4d..cda2b88 100644
--- a/manpages/de/lh_binary_syslinux.de.1
+++ b/manpages/de/lh_binary_syslinux.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_syslinux\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_tar.de.1 b/manpages/de/lh_binary_tar.de.1
index 7339644..bd11ada 100644
--- a/manpages/de/lh_binary_tar.de.1
+++ b/manpages/de/lh_binary_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_tar\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_usb.de.1 b/manpages/de/lh_binary_usb.de.1
index 7d209e0..6c8859a 100644
--- a/manpages/de/lh_binary_usb.de.1
+++ b/manpages/de/lh_binary_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_usb\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_virtual-hdd.de.1 b/manpages/de/lh_binary_virtual-hdd.de.1
index 833ad42..7175877 100644
--- a/manpages/de/lh_binary_virtual-hdd.de.1
+++ b/manpages/de/lh_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_virtual\-hdd\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_win32-loader.de.1 b/manpages/de/lh_binary_win32-loader.de.1
index 1df3304..48b8186 100644
--- a/manpages/de/lh_binary_win32-loader.de.1
+++ b/manpages/de/lh_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_win32\-loader\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_yaboot.de.1 b/manpages/de/lh_binary_yaboot.de.1
index a8842ae..20bb788 100644
--- a/manpages/de/lh_binary_yaboot.de.1
+++ b/manpages/de/lh_binary_yaboot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh binary_yaboot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_bootstrap.de.1 b/manpages/de/lh_bootstrap.de.1
index d5616cf..05954a4 100644
--- a/manpages/de/lh_bootstrap.de.1
+++ b/manpages/de/lh_bootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh bootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_cache.de.1 b/manpages/de/lh_bootstrap_cache.de.1
index 1215af0..442004c 100644
--- a/manpages/de/lh_bootstrap_cache.de.1
+++ b/manpages/de/lh_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh bootstrap_cache\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_cdebootstrap.de.1 b/manpages/de/lh_bootstrap_cdebootstrap.de.1
index e2bb010..7c3789f 100644
--- a/manpages/de/lh_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lh_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh bootstrap_cdebootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_copy.de.1 b/manpages/de/lh_bootstrap_copy.de.1
index f9b97d2..93e8d0a 100644
--- a/manpages/de/lh_bootstrap_copy.de.1
+++ b/manpages/de/lh_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh bootstrap_copy\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_debootstrap.de.1 b/manpages/de/lh_bootstrap_debootstrap.de.1
index fb0402b..957a6b2 100644
--- a/manpages/de/lh_bootstrap_debootstrap.de.1
+++ b/manpages/de/lh_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh bootstrap_debootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_build.de.1 b/manpages/de/lh_build.de.1
index 0015e85..0b6a3d5 100644
--- a/manpages/de/lh_build.de.1
+++ b/manpages/de/lh_build.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh build\fP \- Erstellt die "bootstrap", "chroot", "binary" und "source"
diff --git a/manpages/de/lh_chroot.de.1 b/manpages/de/lh_chroot.de.1
index ca379bf..ea8ae35 100644
--- a/manpages/de/lh_chroot.de.1
+++ b/manpages/de/lh_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_apt.de.1 b/manpages/de/lh_chroot_apt.de.1
index beced72..3449d8c 100644
--- a/manpages/de/lh_chroot_apt.de.1
+++ b/manpages/de/lh_chroot_apt.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_apt\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_cache.de.1 b/manpages/de/lh_chroot_cache.de.1
index 70619c6..0d94b07 100644
--- a/manpages/de/lh_chroot_cache.de.1
+++ b/manpages/de/lh_chroot_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_cache\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_debianchroot.de.1 b/manpages/de/lh_chroot_debianchroot.de.1
index 6d9ee1f..508aa5e 100644
--- a/manpages/de/lh_chroot_debianchroot.de.1
+++ b/manpages/de/lh_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_debianchroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_devpts.de.1 b/manpages/de/lh_chroot_devpts.de.1
index 8568140..2f65e03 100644
--- a/manpages/de/lh_chroot_devpts.de.1
+++ b/manpages/de/lh_chroot_devpts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_devpts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_dpkg.de.1 b/manpages/de/lh_chroot_dpkg.de.1
index ca77271..f1ecda7 100644
--- a/manpages/de/lh_chroot_dpkg.de.1
+++ b/manpages/de/lh_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_dpkg\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hacks.de.1 b/manpages/de/lh_chroot_hacks.de.1
index 0271403..c49c3b5 100644
--- a/manpages/de/lh_chroot_hacks.de.1
+++ b/manpages/de/lh_chroot_hacks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_hacks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hooks.de.1 b/manpages/de/lh_chroot_hooks.de.1
index ca9cfaf..c2b5fa7 100644
--- a/manpages/de/lh_chroot_hooks.de.1
+++ b/manpages/de/lh_chroot_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hostname.de.1 b/manpages/de/lh_chroot_hostname.de.1
index e07c5a6..2cad8cf 100644
--- a/manpages/de/lh_chroot_hostname.de.1
+++ b/manpages/de/lh_chroot_hostname.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_hostname\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hosts.de.1 b/manpages/de/lh_chroot_hosts.de.1
index 0734737..dacb459 100644
--- a/manpages/de/lh_chroot_hosts.de.1
+++ b/manpages/de/lh_chroot_hosts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_hosts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_install-packages.de.1 b/manpages/de/lh_chroot_install-packages.de.1
index ab6f000..144c560 100644
--- a/manpages/de/lh_chroot_install-packages.de.1
+++ b/manpages/de/lh_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_install\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_interactive.de.1 b/manpages/de/lh_chroot_interactive.de.1
index 3f781a5..8c8c859 100644
--- a/manpages/de/lh_chroot_interactive.de.1
+++ b/manpages/de/lh_chroot_interactive.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_interactive\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_linux-image.de.1 b/manpages/de/lh_chroot_linux-image.de.1
index e737254..8e67d12 100644
--- a/manpages/de/lh_chroot_linux-image.de.1
+++ b/manpages/de/lh_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_linux\-image\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-hooks.de.1 b/manpages/de/lh_chroot_local-hooks.de.1
index cebea9e..2e694f1 100644
--- a/manpages/de/lh_chroot_local-hooks.de.1
+++ b/manpages/de/lh_chroot_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-includes.de.1 b/manpages/de/lh_chroot_local-includes.de.1
index b1a4457..cb11c51 100644
--- a/manpages/de/lh_chroot_local-includes.de.1
+++ b/manpages/de/lh_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-includes\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-packages.de.1 b/manpages/de/lh_chroot_local-packages.de.1
index be3355e..eb5a630 100644
--- a/manpages/de/lh_chroot_local-packages.de.1
+++ b/manpages/de/lh_chroot_local-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-packageslists.de.1 b/manpages/de/lh_chroot_local-packageslists.de.1
index 070dec3..49b763c 100644
--- a/manpages/de/lh_chroot_local-packageslists.de.1
+++ b/manpages/de/lh_chroot_local-packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-patches.de.1 b/manpages/de/lh_chroot_local-patches.de.1
index a929c51..f78492c 100644
--- a/manpages/de/lh_chroot_local-patches.de.1
+++ b/manpages/de/lh_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-patches\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-preseed.de.1 b/manpages/de/lh_chroot_local-preseed.de.1
index 12e3783..b1a680b 100644
--- a/manpages/de/lh_chroot_local-preseed.de.1
+++ b/manpages/de/lh_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_local\-preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_localization.de.1 b/manpages/de/lh_chroot_localization.de.1
index 7a8d524..5d72875 100644
--- a/manpages/de/lh_chroot_localization.de.1
+++ b/manpages/de/lh_chroot_localization.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_localization\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_packages.de.1 b/manpages/de/lh_chroot_packages.de.1
index 6216d2d..5d76175 100644
--- a/manpages/de/lh_chroot_packages.de.1
+++ b/manpages/de/lh_chroot_packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_packageslists.de.1 b/manpages/de/lh_chroot_packageslists.de.1
index 656cfef..b2ad4ab 100644
--- a/manpages/de/lh_chroot_packageslists.de.1
+++ b/manpages/de/lh_chroot_packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_preseed.de.1 b/manpages/de/lh_chroot_preseed.de.1
index 3542f40..6836c0f 100644
--- a/manpages/de/lh_chroot_preseed.de.1
+++ b/manpages/de/lh_chroot_preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_proc.de.1 b/manpages/de/lh_chroot_proc.de.1
index 901884c..075248d 100644
--- a/manpages/de/lh_chroot_proc.de.1
+++ b/manpages/de/lh_chroot_proc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_proc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_resolv.de.1 b/manpages/de/lh_chroot_resolv.de.1
index a7c7855..5148fb3 100644
--- a/manpages/de/lh_chroot_resolv.de.1
+++ b/manpages/de/lh_chroot_resolv.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_resolv\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_selinuxfs.de.1 b/manpages/de/lh_chroot_selinuxfs.de.1
index 5d8c219..ef95baa 100644
--- a/manpages/de/lh_chroot_selinuxfs.de.1
+++ b/manpages/de/lh_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_selinuxfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sources.de.1 b/manpages/de/lh_chroot_sources.de.1
index 63aa678..4b066d8 100644
--- a/manpages/de/lh_chroot_sources.de.1
+++ b/manpages/de/lh_chroot_sources.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_sources\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_symlinks.de.1 b/manpages/de/lh_chroot_symlinks.de.1
index b8f2aae..665d90b 100644
--- a/manpages/de/lh_chroot_symlinks.de.1
+++ b/manpages/de/lh_chroot_symlinks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_symlinks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysfs.de.1 b/manpages/de/lh_chroot_sysfs.de.1
index 8293cf3..0e871f9 100644
--- a/manpages/de/lh_chroot_sysfs.de.1
+++ b/manpages/de/lh_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_sysfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysv-rc.de.1 b/manpages/de/lh_chroot_sysv-rc.de.1
index 924e75e..6b3895b 100644
--- a/manpages/de/lh_chroot_sysv-rc.de.1
+++ b/manpages/de/lh_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_sysv\-rc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysvinit.de.1 b/manpages/de/lh_chroot_sysvinit.de.1
index a2e86bc..154be31 100644
--- a/manpages/de/lh_chroot_sysvinit.de.1
+++ b/manpages/de/lh_chroot_sysvinit.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_sysvinit\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_tasks.de.1 b/manpages/de/lh_chroot_tasks.de.1
index f2383fe..32d5199 100644
--- a/manpages/de/lh_chroot_tasks.de.1
+++ b/manpages/de/lh_chroot_tasks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_tasks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_upstart.de.1 b/manpages/de/lh_chroot_upstart.de.1
index 3aadffb..ff618d4 100644
--- a/manpages/de/lh_chroot_upstart.de.1
+++ b/manpages/de/lh_chroot_upstart.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh chroot_upstart\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_clean.de.1 b/manpages/de/lh_clean.de.1
index 20c5415..ef36c94 100644
--- a/manpages/de/lh_clean.de.1
+++ b/manpages/de/lh_clean.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh clean\fP \- Räumt das Arbeitsverzeichnis auf
diff --git a/manpages/de/lh_config.de.1 b/manpages/de/lh_config.de.1
index 61220f3..f80e1f8 100644
--- a/manpages/de/lh_config.de.1
+++ b/manpages/de/lh_config.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh config\fP \- Erstellen des config Verzeichnisses
@@ -500,9 +500,10 @@ KiB.
 sets the keyring package or additional keyring packages. By default this is
 set to debian\-archive\-keyring.
 .IP "\-l|\fB\-\-language\fP \fILANGUAGE\fP" 4
-sets the language of a live system by installing l10n related packages and
-enables generation of the correct locales through automatically setting the
-right boot parameters.
+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
+boot parameters, those need to be done through the bootappend\-live
+parameter.
 .IP "\-k|\fB\-\-linux\-flavours\fP \fIFLAVOUR\fP|\(dq\fIFLAVOURS\fP\(dq" 4
 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.
diff --git a/manpages/de/lh_local.de.1 b/manpages/de/lh_local.de.1
index b5f323c..73cfc05 100644
--- a/manpages/de/lh_local.de.1
+++ b/manpages/de/lh_local.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh local\fP \- Wrapper für lokale live\-helper Programme
diff --git a/manpages/de/lh_source.de.1 b/manpages/de/lh_source.de.1
index ee57f0f..34aea1b 100644
--- a/manpages/de/lh_source.de.1
+++ b/manpages/de/lh_source.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_checksums.de.1 b/manpages/de/lh_source_checksums.de.1
index fa2fee9..d6523e4 100644
--- a/manpages/de/lh_source_checksums.de.1
+++ b/manpages/de/lh_source_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_checksums\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_debian-live.de.1 b/manpages/de/lh_source_debian-live.de.1
index 85044c9..888ee7e 100644
--- a/manpages/de/lh_source_debian-live.de.1
+++ b/manpages/de/lh_source_debian-live.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_debian\-live\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_debian.de.1 b/manpages/de/lh_source_debian.de.1
index 8b70ef7..7565abe 100644
--- a/manpages/de/lh_source_debian.de.1
+++ b/manpages/de/lh_source_debian.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_debian\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_disk.de.1 b/manpages/de/lh_source_disk.de.1
index 31cc897..303fb74 100644
--- a/manpages/de/lh_source_disk.de.1
+++ b/manpages/de/lh_source_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_disk\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_iso.de.1 b/manpages/de/lh_source_iso.de.1
index e954c35..ebc20c0 100644
--- a/manpages/de/lh_source_iso.de.1
+++ b/manpages/de/lh_source_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_iso\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_net.de.1 b/manpages/de/lh_source_net.de.1
index 802f86a..98d7bdc 100644
--- a/manpages/de/lh_source_net.de.1
+++ b/manpages/de/lh_source_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_net\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_tar.de.1 b/manpages/de/lh_source_tar.de.1
index 9fe423e..27be03e 100644
--- a/manpages/de/lh_source_tar.de.1
+++ b/manpages/de/lh_source_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_tar\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_usb.de.1 b/manpages/de/lh_source_usb.de.1
index 8b6ff4c..8015126 100644
--- a/manpages/de/lh_source_usb.de.1
+++ b/manpages/de/lh_source_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_usb\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_virtual-hdd.de.1 b/manpages/de/lh_source_virtual-hdd.de.1
index 96443d7..c8b7dcf 100644
--- a/manpages/de/lh_source_virtual-hdd.de.1
+++ b/manpages/de/lh_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh source_virtual\-hdd\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_testroot.de.1 b/manpages/de/lh_testroot.de.1
index d966efb..2c31ea0 100644
--- a/manpages/de/lh_testroot.de.1
+++ b/manpages/de/lh_testroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 1 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlh testroot\fP \- stellt sicher, dass ein System als root erstellt wird
diff --git a/manpages/de/live-helper.de.7 b/manpages/de/live-helper.de.7
index 0033671..b0d80d0 100644
--- a/manpages/de/live-helper.de.7
+++ b/manpages/de/live-helper.de.7
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-HELPER 7 24.06.2010 2.0~a16 "Debian Live Projekt"
+.TH LIVE\-HELPER 7 02.07.2010 2.0~a17 "Debian Live Projekt"
 
 .SH NAME
 \fBlive\-helper\fP \- die Debian Live Tool Suite
diff --git a/manpages/en/lh.1 b/manpages/en/lh.1
index d0ecb09..7cea0b0 100644
--- a/manpages/en/lh.1
+++ b/manpages/en/lh.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh\fR \- wrapper for live\-helper programs
diff --git a/manpages/en/lh_binary.1 b/manpages/en/lh_binary.1
index cd0f55e..7d4961d 100644
--- a/manpages/en/lh_binary.1
+++ b/manpages/en/lh_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_checksums.1 b/manpages/en/lh_binary_checksums.1
index c69807f..95c2601 100644
--- a/manpages/en/lh_binary_checksums.1
+++ b/manpages/en/lh_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_chroot.1 b/manpages/en/lh_binary_chroot.1
index e9340a7..74e879b 100644
--- a/manpages/en/lh_binary_chroot.1
+++ b/manpages/en/lh_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_debian-installer.1 b/manpages/en/lh_binary_debian-installer.1
index 91d4e3c..1ba7e30 100644
--- a/manpages/en/lh_binary_debian-installer.1
+++ b/manpages/en/lh_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_disk.1 b/manpages/en/lh_binary_disk.1
index 3f557b7..ae669a7 100644
--- a/manpages/en/lh_binary_disk.1
+++ b/manpages/en/lh_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_encryption.1 b/manpages/en/lh_binary_encryption.1
index db92cc9..e8ee2ba 100644
--- a/manpages/en/lh_binary_encryption.1
+++ b/manpages/en/lh_binary_encryption.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_encryption\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_grub.1 b/manpages/en/lh_binary_grub.1
index e1d3ba6..675d407 100644
--- a/manpages/en/lh_binary_grub.1
+++ b/manpages/en/lh_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_grub2.1 b/manpages/en/lh_binary_grub2.1
index 0ba4289..f6a480d 100644
--- a/manpages/en/lh_binary_grub2.1
+++ b/manpages/en/lh_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_includes.1 b/manpages/en/lh_binary_includes.1
index 78fa5b9..1cb2aa0 100644
--- a/manpages/en/lh_binary_includes.1
+++ b/manpages/en/lh_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_iso.1 b/manpages/en/lh_binary_iso.1
index 0d6d1f8..2da2489 100644
--- a/manpages/en/lh_binary_iso.1
+++ b/manpages/en/lh_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_linux-image.1 b/manpages/en/lh_binary_linux-image.1
index 448aa5b..958d996 100644
--- a/manpages/en/lh_binary_linux-image.1
+++ b/manpages/en/lh_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-hooks.1 b/manpages/en/lh_binary_local-hooks.1
index ebf74ec..23472d3 100644
--- a/manpages/en/lh_binary_local-hooks.1
+++ b/manpages/en/lh_binary_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-includes.1 b/manpages/en/lh_binary_local-includes.1
index 555e10e..3f88e81 100644
--- a/manpages/en/lh_binary_local-includes.1
+++ b/manpages/en/lh_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-packageslists.1 b/manpages/en/lh_binary_local-packageslists.1
index e3c5a4b..ab09058 100644
--- a/manpages/en/lh_binary_local-packageslists.1
+++ b/manpages/en/lh_binary_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_local-packageslists\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_manifest.1 b/manpages/en/lh_binary_manifest.1
index 52b77bc..f9737cc 100644
--- a/manpages/en/lh_binary_manifest.1
+++ b/manpages/en/lh_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_memtest.1 b/manpages/en/lh_binary_memtest.1
index 623b7ec..c456af0 100644
--- a/manpages/en/lh_binary_memtest.1
+++ b/manpages/en/lh_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_net.1 b/manpages/en/lh_binary_net.1
index 27c3568..adad427 100644
--- a/manpages/en/lh_binary_net.1
+++ b/manpages/en/lh_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_rootfs.1 b/manpages/en/lh_binary_rootfs.1
index b785421..daaa594 100644
--- a/manpages/en/lh_binary_rootfs.1
+++ b/manpages/en/lh_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_silo.1 b/manpages/en/lh_binary_silo.1
index fe7e027..a144e21 100644
--- a/manpages/en/lh_binary_silo.1
+++ b/manpages/en/lh_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_syslinux.1 b/manpages/en/lh_binary_syslinux.1
index 99f9c25..bd9af08 100644
--- a/manpages/en/lh_binary_syslinux.1
+++ b/manpages/en/lh_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_tar.1 b/manpages/en/lh_binary_tar.1
index 5406967..cc78ad2 100644
--- a/manpages/en/lh_binary_tar.1
+++ b/manpages/en/lh_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_usb.1 b/manpages/en/lh_binary_usb.1
index 385ab0d..7ea11dd 100644
--- a/manpages/en/lh_binary_usb.1
+++ b/manpages/en/lh_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_usb\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_virtual-hdd.1 b/manpages/en/lh_binary_virtual-hdd.1
index 6011fcc..f022161 100644
--- a/manpages/en/lh_binary_virtual-hdd.1
+++ b/manpages/en/lh_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_win32-loader.1 b/manpages/en/lh_binary_win32-loader.1
index 6962b2b..cab2364 100644
--- a/manpages/en/lh_binary_win32-loader.1
+++ b/manpages/en/lh_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_yaboot.1 b/manpages/en/lh_binary_yaboot.1
index 42fbbfb..9a48be4 100644
--- a/manpages/en/lh_binary_yaboot.1
+++ b/manpages/en/lh_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lh_bootstrap.1 b/manpages/en/lh_bootstrap.1
index 51437f0..6356cd4 100644
--- a/manpages/en/lh_bootstrap.1
+++ b/manpages/en/lh_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_cache.1 b/manpages/en/lh_bootstrap_cache.1
index 1c60bcf..50eef81 100644
--- a/manpages/en/lh_bootstrap_cache.1
+++ b/manpages/en/lh_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_cdebootstrap.1 b/manpages/en/lh_bootstrap_cdebootstrap.1
index 9bd3bc3..152bc80 100644
--- a/manpages/en/lh_bootstrap_cdebootstrap.1
+++ b/manpages/en/lh_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_copy.1 b/manpages/en/lh_bootstrap_copy.1
index 6774f0a..9515b81 100644
--- a/manpages/en/lh_bootstrap_copy.1
+++ b/manpages/en/lh_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_debootstrap.1 b/manpages/en/lh_bootstrap_debootstrap.1
index 2f51329..81dd475 100644
--- a/manpages/en/lh_bootstrap_debootstrap.1
+++ b/manpages/en/lh_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_build.1 b/manpages/en/lh_build.1
index 49ef768..38203ea 100644
--- a/manpages/en/lh_build.1
+++ b/manpages/en/lh_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lh_chroot.1 b/manpages/en/lh_chroot.1
index dc715de..ae511a1 100644
--- a/manpages/en/lh_chroot.1
+++ b/manpages/en/lh_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_apt.1 b/manpages/en/lh_chroot_apt.1
index af47b9b..1d3703a 100644
--- a/manpages/en/lh_chroot_apt.1
+++ b/manpages/en/lh_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_cache.1 b/manpages/en/lh_chroot_cache.1
index 942f22e..09b55d2 100644
--- a/manpages/en/lh_chroot_cache.1
+++ b/manpages/en/lh_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_debianchroot.1 b/manpages/en/lh_chroot_debianchroot.1
index 1e55075..f360647 100644
--- a/manpages/en/lh_chroot_debianchroot.1
+++ b/manpages/en/lh_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_devpts.1 b/manpages/en/lh_chroot_devpts.1
index 74b1634..be7ab58 100644
--- a/manpages/en/lh_chroot_devpts.1
+++ b/manpages/en/lh_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_dpkg.1 b/manpages/en/lh_chroot_dpkg.1
index ae3d84b..972118d 100644
--- a/manpages/en/lh_chroot_dpkg.1
+++ b/manpages/en/lh_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hacks.1 b/manpages/en/lh_chroot_hacks.1
index 432e7ed..6a60598 100644
--- a/manpages/en/lh_chroot_hacks.1
+++ b/manpages/en/lh_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hooks.1 b/manpages/en/lh_chroot_hooks.1
index e432147..ddd5657 100644
--- a/manpages/en/lh_chroot_hooks.1
+++ b/manpages/en/lh_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hostname.1 b/manpages/en/lh_chroot_hostname.1
index 8f8bc99..9562966 100644
--- a/manpages/en/lh_chroot_hostname.1
+++ b/manpages/en/lh_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hosts.1 b/manpages/en/lh_chroot_hosts.1
index fa6c694..c980600 100644
--- a/manpages/en/lh_chroot_hosts.1
+++ b/manpages/en/lh_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_install-packages.1 b/manpages/en/lh_chroot_install-packages.1
index 8a79896..28fcc31 100644
--- a/manpages/en/lh_chroot_install-packages.1
+++ b/manpages/en/lh_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_interactive.1 b/manpages/en/lh_chroot_interactive.1
index 08b77fb..b5de0b6 100644
--- a/manpages/en/lh_chroot_interactive.1
+++ b/manpages/en/lh_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_linux-image.1 b/manpages/en/lh_chroot_linux-image.1
index 3447755..4fb4b2f 100644
--- a/manpages/en/lh_chroot_linux-image.1
+++ b/manpages/en/lh_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-hooks.1 b/manpages/en/lh_chroot_local-hooks.1
index a971a49..102f74f 100644
--- a/manpages/en/lh_chroot_local-hooks.1
+++ b/manpages/en/lh_chroot_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-includes.1 b/manpages/en/lh_chroot_local-includes.1
index 1e88cf7..681e88e 100644
--- a/manpages/en/lh_chroot_local-includes.1
+++ b/manpages/en/lh_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-packages.1 b/manpages/en/lh_chroot_local-packages.1
index 0be121a..8d5452d 100644
--- a/manpages/en/lh_chroot_local-packages.1
+++ b/manpages/en/lh_chroot_local-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-packageslists.1 b/manpages/en/lh_chroot_local-packageslists.1
index 167516b..f83e960 100644
--- a/manpages/en/lh_chroot_local-packageslists.1
+++ b/manpages/en/lh_chroot_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-patches.1 b/manpages/en/lh_chroot_local-patches.1
index 023cc99..8b05b45 100644
--- a/manpages/en/lh_chroot_local-patches.1
+++ b/manpages/en/lh_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-preseed.1 b/manpages/en/lh_chroot_local-preseed.1
index 11f2ee2..6b960a1 100644
--- a/manpages/en/lh_chroot_local-preseed.1
+++ b/manpages/en/lh_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_localization.1 b/manpages/en/lh_chroot_localization.1
index e92ec28..f1f8f31 100644
--- a/manpages/en/lh_chroot_localization.1
+++ b/manpages/en/lh_chroot_localization.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_localization\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_packages.1 b/manpages/en/lh_chroot_packages.1
index 0add10b..6cf602c 100644
--- a/manpages/en/lh_chroot_packages.1
+++ b/manpages/en/lh_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_packageslists.1 b/manpages/en/lh_chroot_packageslists.1
index ffeef5a..d6b97e4 100644
--- a/manpages/en/lh_chroot_packageslists.1
+++ b/manpages/en/lh_chroot_packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_preseed.1 b/manpages/en/lh_chroot_preseed.1
index 7e9432d..75312c9 100644
--- a/manpages/en/lh_chroot_preseed.1
+++ b/manpages/en/lh_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_proc.1 b/manpages/en/lh_chroot_proc.1
index 453be06..343ab65 100644
--- a/manpages/en/lh_chroot_proc.1
+++ b/manpages/en/lh_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_resolv.1 b/manpages/en/lh_chroot_resolv.1
index d78bcfe..c454b99 100644
--- a/manpages/en/lh_chroot_resolv.1
+++ b/manpages/en/lh_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_selinuxfs.1 b/manpages/en/lh_chroot_selinuxfs.1
index 226adcf..0fd8288 100644
--- a/manpages/en/lh_chroot_selinuxfs.1
+++ b/manpages/en/lh_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sources.1 b/manpages/en/lh_chroot_sources.1
index 4de5dc5..057bf0f 100644
--- a/manpages/en/lh_chroot_sources.1
+++ b/manpages/en/lh_chroot_sources.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_sources\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_symlinks.1 b/manpages/en/lh_chroot_symlinks.1
index dcf9d57..9cd5080 100644
--- a/manpages/en/lh_chroot_symlinks.1
+++ b/manpages/en/lh_chroot_symlinks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_symlinks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysfs.1 b/manpages/en/lh_chroot_sysfs.1
index 1675db5..5e805f2 100644
--- a/manpages/en/lh_chroot_sysfs.1
+++ b/manpages/en/lh_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysv-rc.1 b/manpages/en/lh_chroot_sysv-rc.1
index 95567d4..8600f2a 100644
--- a/manpages/en/lh_chroot_sysv-rc.1
+++ b/manpages/en/lh_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysvinit.1 b/manpages/en/lh_chroot_sysvinit.1
index 910b0d6..2e1203d 100644
--- a/manpages/en/lh_chroot_sysvinit.1
+++ b/manpages/en/lh_chroot_sysvinit.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_sysvinit\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_tasks.1 b/manpages/en/lh_chroot_tasks.1
index 5952d44..852e052 100644
--- a/manpages/en/lh_chroot_tasks.1
+++ b/manpages/en/lh_chroot_tasks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_tasks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_upstart.1 b/manpages/en/lh_chroot_upstart.1
index bd3eb88..5dfd38d 100644
--- a/manpages/en/lh_chroot_upstart.1
+++ b/manpages/en/lh_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_clean.1 b/manpages/en/lh_clean.1
index 220ecf6..4ec7ba2 100644
--- a/manpages/en/lh_clean.1
+++ b/manpages/en/lh_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh clean\fR \- Clean build directory
diff --git a/manpages/en/lh_config.1 b/manpages/en/lh_config.1
index 0d77a1d..a4ef6be 100644
--- a/manpages/en/lh_config.1
+++ b/manpages/en/lh_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh config\fR \- Create config directory
@@ -326,7 +326,7 @@ sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) file
 .IP "\fB\-\-keyring\-packages\fR \fIPACKAGE\fI|""\fIPACKAGES\fR""" 4
 sets the keyring package or additional keyring packages. By default this is set to debian\-archive\-keyring.
 .IP "\-l|\fB\-\-language\fR \fILANGUAGE\fR" 4
-sets the language of a live system by installing l10n related packages and enables generation of the correct locales through automatically setting the right boot parameters.
+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 boot parameters, those need to be done through the bootappend\-live parameter.
 .IP "\-k|\fB\-\-linux\-flavours\fR \fIFLAVOUR\fR|""\fIFLAVOURS\fR""" 4
 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.
 .IP "\fB\-\-linux\-packages\fR ""\fIPACKAGES\fR""" 4
diff --git a/manpages/en/lh_local.1 b/manpages/en/lh_local.1
index 35e8db6..9f9eb1b 100644
--- a/manpages/en/lh_local.1
+++ b/manpages/en/lh_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh local\fR \- wrapper for local live\-helper programs
diff --git a/manpages/en/lh_source.1 b/manpages/en/lh_source.1
index 6a40949..1efb7a7 100644
--- a/manpages/en/lh_source.1
+++ b/manpages/en/lh_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_checksums.1 b/manpages/en/lh_source_checksums.1
index a79bf86..2d47fd5 100644
--- a/manpages/en/lh_source_checksums.1
+++ b/manpages/en/lh_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_debian-live.1 b/manpages/en/lh_source_debian-live.1
index 5e2b29e..4bc5f90 100644
--- a/manpages/en/lh_source_debian-live.1
+++ b/manpages/en/lh_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_debian.1 b/manpages/en/lh_source_debian.1
index 0a35349..7d6a8a6 100644
--- a/manpages/en/lh_source_debian.1
+++ b/manpages/en/lh_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_disk.1 b/manpages/en/lh_source_disk.1
index c745391..7dc1b0c 100644
--- a/manpages/en/lh_source_disk.1
+++ b/manpages/en/lh_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_iso.1 b/manpages/en/lh_source_iso.1
index 2bc1e1f..3b94ef5 100644
--- a/manpages/en/lh_source_iso.1
+++ b/manpages/en/lh_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_net.1 b/manpages/en/lh_source_net.1
index dceccc8..af5166b 100644
--- a/manpages/en/lh_source_net.1
+++ b/manpages/en/lh_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_net\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_tar.1 b/manpages/en/lh_source_tar.1
index 0094723..07f965b 100644
--- a/manpages/en/lh_source_tar.1
+++ b/manpages/en/lh_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_usb.1 b/manpages/en/lh_source_usb.1
index f72b5d2..4e90f7b 100644
--- a/manpages/en/lh_source_usb.1
+++ b/manpages/en/lh_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_usb\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_virtual-hdd.1 b/manpages/en/lh_source_virtual-hdd.1
index a5a8688..9ab28b3 100644
--- a/manpages/en/lh_source_virtual-hdd.1
+++ b/manpages/en/lh_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lh_testroot.1 b/manpages/en/lh_testroot.1
index 1472be7..a1a4fa6 100644
--- a/manpages/en/lh_testroot.1
+++ b/manpages/en/lh_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlh testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-helper.7 b/manpages/en/live-helper.7
index 2394981..21246d2 100644
--- a/manpages/en/live-helper.7
+++ b/manpages/en/live-helper.7
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 7 2010\-06\-24 2.0~a16 "Debian Live Project"
+.TH LIVE\-HELPER 7 2010\-07\-02 2.0~a17 "Debian Live Project"
 
 .SH NAME
 \fBlive\-helper\fR \- the Debian Live tool suite
diff --git a/manpages/po/de/lh.1.po b/manpages/po/de/lh.1.po
index c0308ec..b09ac30 100644
--- a/manpages/po/de/lh.1.po
+++ b/manpages/po/de/lh.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary.1.po b/manpages/po/de/lh_binary.1.po
index ac95b88..61ade0e 100644
--- a/manpages/po/de/lh_binary.1.po
+++ b/manpages/po/de/lh_binary.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_checksums.1.po b/manpages/po/de/lh_binary_checksums.1.po
index ca580c3..e2b7e60 100644
--- a/manpages/po/de/lh_binary_checksums.1.po
+++ b/manpages/po/de/lh_binary_checksums.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_chroot.1.po b/manpages/po/de/lh_binary_chroot.1.po
index 5a799d2..04923bf 100644
--- a/manpages/po/de/lh_binary_chroot.1.po
+++ b/manpages/po/de/lh_binary_chroot.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_debian-installer.1.po b/manpages/po/de/lh_binary_debian-installer.1.po
index 6ec2219..242a5d0 100644
--- a/manpages/po/de/lh_binary_debian-installer.1.po
+++ b/manpages/po/de/lh_binary_debian-installer.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_disk.1.po b/manpages/po/de/lh_binary_disk.1.po
index 412397a..54a1609 100644
--- a/manpages/po/de/lh_binary_disk.1.po
+++ b/manpages/po/de/lh_binary_disk.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_encryption.1.po b/manpages/po/de/lh_binary_encryption.1.po
index 5556564..9648e2a 100644
--- a/manpages/po/de/lh_binary_encryption.1.po
+++ b/manpages/po/de/lh_binary_encryption.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_grub.1.po b/manpages/po/de/lh_binary_grub.1.po
index 1048ed7..92c59c7 100644
--- a/manpages/po/de/lh_binary_grub.1.po
+++ b/manpages/po/de/lh_binary_grub.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_grub2.1.po b/manpages/po/de/lh_binary_grub2.1.po
index c281009..868c6d7 100644
--- a/manpages/po/de/lh_binary_grub2.1.po
+++ b/manpages/po/de/lh_binary_grub2.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_includes.1.po b/manpages/po/de/lh_binary_includes.1.po
index 3668c5e..4a7871d 100644
--- a/manpages/po/de/lh_binary_includes.1.po
+++ b/manpages/po/de/lh_binary_includes.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_iso.1.po b/manpages/po/de/lh_binary_iso.1.po
index 29bb3fa..bba1c87 100644
--- a/manpages/po/de/lh_binary_iso.1.po
+++ b/manpages/po/de/lh_binary_iso.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_linux-image.1.po b/manpages/po/de/lh_binary_linux-image.1.po
index 9739254..78215d7 100644
--- a/manpages/po/de/lh_binary_linux-image.1.po
+++ b/manpages/po/de/lh_binary_linux-image.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_local-hooks.1.po b/manpages/po/de/lh_binary_local-hooks.1.po
index 5eaa7a0..67da87e 100644
--- a/manpages/po/de/lh_binary_local-hooks.1.po
+++ b/manpages/po/de/lh_binary_local-hooks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_local-includes.1.po b/manpages/po/de/lh_binary_local-includes.1.po
index be05721..3490eb0 100644
--- a/manpages/po/de/lh_binary_local-includes.1.po
+++ b/manpages/po/de/lh_binary_local-includes.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_local-packageslists.1.po b/manpages/po/de/lh_binary_local-packageslists.1.po
index b41c71b..2eb5035 100644
--- a/manpages/po/de/lh_binary_local-packageslists.1.po
+++ b/manpages/po/de/lh_binary_local-packageslists.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_manifest.1.po b/manpages/po/de/lh_binary_manifest.1.po
index 24589ce..3454e90 100644
--- a/manpages/po/de/lh_binary_manifest.1.po
+++ b/manpages/po/de/lh_binary_manifest.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_memtest.1.po b/manpages/po/de/lh_binary_memtest.1.po
index 73fdfa2..f71b55e 100644
--- a/manpages/po/de/lh_binary_memtest.1.po
+++ b/manpages/po/de/lh_binary_memtest.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_net.1.po b/manpages/po/de/lh_binary_net.1.po
index 89138da..5102ac0 100644
--- a/manpages/po/de/lh_binary_net.1.po
+++ b/manpages/po/de/lh_binary_net.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_rootfs.1.po b/manpages/po/de/lh_binary_rootfs.1.po
index 0754f15..9bede35 100644
--- a/manpages/po/de/lh_binary_rootfs.1.po
+++ b/manpages/po/de/lh_binary_rootfs.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_silo.1.po b/manpages/po/de/lh_binary_silo.1.po
index 91179df..f0bc2c4 100644
--- a/manpages/po/de/lh_binary_silo.1.po
+++ b/manpages/po/de/lh_binary_silo.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_syslinux.1.po b/manpages/po/de/lh_binary_syslinux.1.po
index 3b4a3f2..ebd127e 100644
--- a/manpages/po/de/lh_binary_syslinux.1.po
+++ b/manpages/po/de/lh_binary_syslinux.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_tar.1.po b/manpages/po/de/lh_binary_tar.1.po
index 22bfed4..6b69e63 100644
--- a/manpages/po/de/lh_binary_tar.1.po
+++ b/manpages/po/de/lh_binary_tar.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_usb.1.po b/manpages/po/de/lh_binary_usb.1.po
index 298c790..d28175c 100644
--- a/manpages/po/de/lh_binary_usb.1.po
+++ b/manpages/po/de/lh_binary_usb.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_virtual-hdd.1.po b/manpages/po/de/lh_binary_virtual-hdd.1.po
index 8cdac49..a4924ac 100644
--- a/manpages/po/de/lh_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lh_binary_virtual-hdd.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_win32-loader.1.po b/manpages/po/de/lh_binary_win32-loader.1.po
index 9872c4d..9ee6323 100644
--- a/manpages/po/de/lh_binary_win32-loader.1.po
+++ b/manpages/po/de/lh_binary_win32-loader.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_binary_yaboot.1.po b/manpages/po/de/lh_binary_yaboot.1.po
index 814652a..0193222 100644
--- a/manpages/po/de/lh_binary_yaboot.1.po
+++ b/manpages/po/de/lh_binary_yaboot.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_bootstrap.1.po b/manpages/po/de/lh_bootstrap.1.po
index 68d4da3..fff1acb 100644
--- a/manpages/po/de/lh_bootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_bootstrap_cache.1.po b/manpages/po/de/lh_bootstrap_cache.1.po
index dd4a2fe..2feebf0 100644
--- a/manpages/po/de/lh_bootstrap_cache.1.po
+++ b/manpages/po/de/lh_bootstrap_cache.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
index 641e225..655fd96 100644
--- a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_bootstrap_copy.1.po b/manpages/po/de/lh_bootstrap_copy.1.po
index 2fa5a47..12314b2 100644
--- a/manpages/po/de/lh_bootstrap_copy.1.po
+++ b/manpages/po/de/lh_bootstrap_copy.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_bootstrap_debootstrap.1.po b/manpages/po/de/lh_bootstrap_debootstrap.1.po
index ec98578..fd52cc4 100644
--- a/manpages/po/de/lh_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_debootstrap.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_build.1.po b/manpages/po/de/lh_build.1.po
index 78e34b6..8f9589d 100644
--- a/manpages/po/de/lh_build.1.po
+++ b/manpages/po/de/lh_build.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 10:39+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot.1.po b/manpages/po/de/lh_chroot.1.po
index cfc2dd0..556f6fc 100644
--- a/manpages/po/de/lh_chroot.1.po
+++ b/manpages/po/de/lh_chroot.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_apt.1.po b/manpages/po/de/lh_chroot_apt.1.po
index bd99952..8515cb8 100644
--- a/manpages/po/de/lh_chroot_apt.1.po
+++ b/manpages/po/de/lh_chroot_apt.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_cache.1.po b/manpages/po/de/lh_chroot_cache.1.po
index d09655f..d8bf7d1 100644
--- a/manpages/po/de/lh_chroot_cache.1.po
+++ b/manpages/po/de/lh_chroot_cache.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_debianchroot.1.po b/manpages/po/de/lh_chroot_debianchroot.1.po
index 6563bbb..b6be06a 100644
--- a/manpages/po/de/lh_chroot_debianchroot.1.po
+++ b/manpages/po/de/lh_chroot_debianchroot.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_devpts.1.po b/manpages/po/de/lh_chroot_devpts.1.po
index ce8a60e..0b788f3 100644
--- a/manpages/po/de/lh_chroot_devpts.1.po
+++ b/manpages/po/de/lh_chroot_devpts.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_dpkg.1.po b/manpages/po/de/lh_chroot_dpkg.1.po
index bb141ea..5eba1e0 100644
--- a/manpages/po/de/lh_chroot_dpkg.1.po
+++ b/manpages/po/de/lh_chroot_dpkg.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_hacks.1.po b/manpages/po/de/lh_chroot_hacks.1.po
index e982f29..2784a78 100644
--- a/manpages/po/de/lh_chroot_hacks.1.po
+++ b/manpages/po/de/lh_chroot_hacks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_hooks.1.po b/manpages/po/de/lh_chroot_hooks.1.po
index 693b4ac..fa4abbb 100644
--- a/manpages/po/de/lh_chroot_hooks.1.po
+++ b/manpages/po/de/lh_chroot_hooks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_hostname.1.po b/manpages/po/de/lh_chroot_hostname.1.po
index 41a036b..0d7b216 100644
--- a/manpages/po/de/lh_chroot_hostname.1.po
+++ b/manpages/po/de/lh_chroot_hostname.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_hosts.1.po b/manpages/po/de/lh_chroot_hosts.1.po
index ae0532d..95d0872 100644
--- a/manpages/po/de/lh_chroot_hosts.1.po
+++ b/manpages/po/de/lh_chroot_hosts.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_install-packages.1.po b/manpages/po/de/lh_chroot_install-packages.1.po
index 5999208..d835445 100644
--- a/manpages/po/de/lh_chroot_install-packages.1.po
+++ b/manpages/po/de/lh_chroot_install-packages.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_interactive.1.po b/manpages/po/de/lh_chroot_interactive.1.po
index f64090d..71ff21f 100644
--- a/manpages/po/de/lh_chroot_interactive.1.po
+++ b/manpages/po/de/lh_chroot_interactive.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_linux-image.1.po b/manpages/po/de/lh_chroot_linux-image.1.po
index be9189a..bfd1757 100644
--- a/manpages/po/de/lh_chroot_linux-image.1.po
+++ b/manpages/po/de/lh_chroot_linux-image.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-hooks.1.po b/manpages/po/de/lh_chroot_local-hooks.1.po
index aeb4ac0..d653751 100644
--- a/manpages/po/de/lh_chroot_local-hooks.1.po
+++ b/manpages/po/de/lh_chroot_local-hooks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-includes.1.po b/manpages/po/de/lh_chroot_local-includes.1.po
index b7d6482..1a554ae 100644
--- a/manpages/po/de/lh_chroot_local-includes.1.po
+++ b/manpages/po/de/lh_chroot_local-includes.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-packages.1.po b/manpages/po/de/lh_chroot_local-packages.1.po
index 34b5796..19c6069 100644
--- a/manpages/po/de/lh_chroot_local-packages.1.po
+++ b/manpages/po/de/lh_chroot_local-packages.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-packageslists.1.po b/manpages/po/de/lh_chroot_local-packageslists.1.po
index 4a82739..445705f 100644
--- a/manpages/po/de/lh_chroot_local-packageslists.1.po
+++ b/manpages/po/de/lh_chroot_local-packageslists.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-patches.1.po b/manpages/po/de/lh_chroot_local-patches.1.po
index fa1b207..f2be8be 100644
--- a/manpages/po/de/lh_chroot_local-patches.1.po
+++ b/manpages/po/de/lh_chroot_local-patches.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_local-preseed.1.po b/manpages/po/de/lh_chroot_local-preseed.1.po
index dc55f11..9786a0f 100644
--- a/manpages/po/de/lh_chroot_local-preseed.1.po
+++ b/manpages/po/de/lh_chroot_local-preseed.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_localization.1.po b/manpages/po/de/lh_chroot_localization.1.po
index 5a4aaea..1eda343 100644
--- a/manpages/po/de/lh_chroot_localization.1.po
+++ b/manpages/po/de/lh_chroot_localization.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_packages.1.po b/manpages/po/de/lh_chroot_packages.1.po
index 682f8f0..34553da 100644
--- a/manpages/po/de/lh_chroot_packages.1.po
+++ b/manpages/po/de/lh_chroot_packages.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_packageslists.1.po b/manpages/po/de/lh_chroot_packageslists.1.po
index 606252d..734b8cb 100644
--- a/manpages/po/de/lh_chroot_packageslists.1.po
+++ b/manpages/po/de/lh_chroot_packageslists.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_preseed.1.po b/manpages/po/de/lh_chroot_preseed.1.po
index fb17ef7..c77dee9 100644
--- a/manpages/po/de/lh_chroot_preseed.1.po
+++ b/manpages/po/de/lh_chroot_preseed.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_proc.1.po b/manpages/po/de/lh_chroot_proc.1.po
index e3f36e3..0dd9674 100644
--- a/manpages/po/de/lh_chroot_proc.1.po
+++ b/manpages/po/de/lh_chroot_proc.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_resolv.1.po b/manpages/po/de/lh_chroot_resolv.1.po
index 276889c..4d1aeb3 100644
--- a/manpages/po/de/lh_chroot_resolv.1.po
+++ b/manpages/po/de/lh_chroot_resolv.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_selinuxfs.1.po b/manpages/po/de/lh_chroot_selinuxfs.1.po
index e9269d9..39020b1 100644
--- a/manpages/po/de/lh_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lh_chroot_selinuxfs.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_sources.1.po b/manpages/po/de/lh_chroot_sources.1.po
index 575801c..8412394 100644
--- a/manpages/po/de/lh_chroot_sources.1.po
+++ b/manpages/po/de/lh_chroot_sources.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_symlinks.1.po b/manpages/po/de/lh_chroot_symlinks.1.po
index 10d91e3..94872de 100644
--- a/manpages/po/de/lh_chroot_symlinks.1.po
+++ b/manpages/po/de/lh_chroot_symlinks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_sysfs.1.po b/manpages/po/de/lh_chroot_sysfs.1.po
index c53ca73..5036b5b 100644
--- a/manpages/po/de/lh_chroot_sysfs.1.po
+++ b/manpages/po/de/lh_chroot_sysfs.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_sysv-rc.1.po b/manpages/po/de/lh_chroot_sysv-rc.1.po
index 8770f80..eb26107 100644
--- a/manpages/po/de/lh_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lh_chroot_sysv-rc.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_sysvinit.1.po b/manpages/po/de/lh_chroot_sysvinit.1.po
index 0566b1d..14ac13e 100644
--- a/manpages/po/de/lh_chroot_sysvinit.1.po
+++ b/manpages/po/de/lh_chroot_sysvinit.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_tasks.1.po b/manpages/po/de/lh_chroot_tasks.1.po
index 855c821..8b83d17 100644
--- a/manpages/po/de/lh_chroot_tasks.1.po
+++ b/manpages/po/de/lh_chroot_tasks.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_chroot_upstart.1.po b/manpages/po/de/lh_chroot_upstart.1.po
index 6e169ab..8e70219 100644
--- a/manpages/po/de/lh_chroot_upstart.1.po
+++ b/manpages/po/de/lh_chroot_upstart.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_clean.1.po b/manpages/po/de/lh_clean.1.po
index 8a539f8..da6acd7 100644
--- a/manpages/po/de/lh_clean.1.po
+++ b/manpages/po/de/lh_clean.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_config.1.po b/manpages/po/de/lh_config.1.po
index e546fce..3e739e3 100644
--- a/manpages/po/de/lh_config.1.po
+++ b/manpages/po/de/lh_config.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
@@ -2044,9 +2045,9 @@ msgstr ""
 #. type: Plain text
 #: en/lh_config.1:330
 msgid ""
-"sets the language of a live system by installing l10n related packages and "
-"enables generation of the correct locales through automatically setting the "
-"right boot parameters."
+"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 "
+"boot parameters, those need to be done through the bootappend-live parameter."
 msgstr ""
 
 #. type: IP
diff --git a/manpages/po/de/lh_local.1.po b/manpages/po/de/lh_local.1.po
index 1089184..fd20e01 100644
--- a/manpages/po/de/lh_local.1.po
+++ b/manpages/po/de/lh_local.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 12:13+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source.1.po b/manpages/po/de/lh_source.1.po
index 04c2d7a..6b8cd14 100644
--- a/manpages/po/de/lh_source.1.po
+++ b/manpages/po/de/lh_source.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_checksums.1.po b/manpages/po/de/lh_source_checksums.1.po
index c00ca7b..7e4e75c 100644
--- a/manpages/po/de/lh_source_checksums.1.po
+++ b/manpages/po/de/lh_source_checksums.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_debian-live.1.po b/manpages/po/de/lh_source_debian-live.1.po
index 1aa83d4..be65b4c 100644
--- a/manpages/po/de/lh_source_debian-live.1.po
+++ b/manpages/po/de/lh_source_debian-live.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_debian.1.po b/manpages/po/de/lh_source_debian.1.po
index a2771d4..01ed49d 100644
--- a/manpages/po/de/lh_source_debian.1.po
+++ b/manpages/po/de/lh_source_debian.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_disk.1.po b/manpages/po/de/lh_source_disk.1.po
index 5d20b1e..d2d9c2c 100644
--- a/manpages/po/de/lh_source_disk.1.po
+++ b/manpages/po/de/lh_source_disk.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_iso.1.po b/manpages/po/de/lh_source_iso.1.po
index dbae255..3bf5ba3 100644
--- a/manpages/po/de/lh_source_iso.1.po
+++ b/manpages/po/de/lh_source_iso.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_net.1.po b/manpages/po/de/lh_source_net.1.po
index a5e8783..f266524 100644
--- a/manpages/po/de/lh_source_net.1.po
+++ b/manpages/po/de/lh_source_net.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_tar.1.po b/manpages/po/de/lh_source_tar.1.po
index b664d23..d3fd406 100644
--- a/manpages/po/de/lh_source_tar.1.po
+++ b/manpages/po/de/lh_source_tar.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_usb.1.po b/manpages/po/de/lh_source_usb.1.po
index 479feba..b817c4d 100644
--- a/manpages/po/de/lh_source_usb.1.po
+++ b/manpages/po/de/lh_source_usb.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_source_virtual-hdd.1.po b/manpages/po/de/lh_source_virtual-hdd.1.po
index 5093be2..26bbe6e 100644
--- a/manpages/po/de/lh_source_virtual-hdd.1.po
+++ b/manpages/po/de/lh_source_virtual-hdd.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/lh_testroot.1.po b/manpages/po/de/lh_testroot.1.po
index d423c4d..eacbbe6 100644
--- a/manpages/po/de/lh_testroot.1.po
+++ b/manpages/po/de/lh_testroot.1.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/po/de/live-helper.7.po b/manpages/po/de/live-helper.7.po
index 9d81d4e..c920fcf 100644
--- a/manpages/po/de/live-helper.7.po
+++ b/manpages/po/de/live-helper.7.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper 2.0~a16\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
-msgstr "24.06.2010"
+msgid "2010-07-02"
+msgstr "02.07.2010"
 
 #. type: TH
 #: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "24.06.2010"
 #: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
-#, no-wrap
-msgid "2.0~a16"
+#, fuzzy, no-wrap
+#| msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr "2.0~a16"
 
 #. type: TH
diff --git a/manpages/pot/lh.1.pot b/manpages/pot/lh.1.pot
index d56aedb..1d59421 100644
--- a/manpages/pot/lh.1.pot
+++ b/manpages/pot/lh.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary.1.pot b/manpages/pot/lh_binary.1.pot
index 83cd06b..d7f6999 100644
--- a/manpages/pot/lh_binary.1.pot
+++ b/manpages/pot/lh_binary.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_checksums.1.pot b/manpages/pot/lh_binary_checksums.1.pot
index 498a13d..318d12c 100644
--- a/manpages/pot/lh_binary_checksums.1.pot
+++ b/manpages/pot/lh_binary_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_chroot.1.pot b/manpages/pot/lh_binary_chroot.1.pot
index 6163492..46e2b54 100644
--- a/manpages/pot/lh_binary_chroot.1.pot
+++ b/manpages/pot/lh_binary_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_debian-installer.1.pot b/manpages/pot/lh_binary_debian-installer.1.pot
index f71343d..1c361e8 100644
--- a/manpages/pot/lh_binary_debian-installer.1.pot
+++ b/manpages/pot/lh_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_disk.1.pot b/manpages/pot/lh_binary_disk.1.pot
index 5e528d5..37b98de 100644
--- a/manpages/pot/lh_binary_disk.1.pot
+++ b/manpages/pot/lh_binary_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_encryption.1.pot b/manpages/pot/lh_binary_encryption.1.pot
index 10fd690..46eb54e 100644
--- a/manpages/pot/lh_binary_encryption.1.pot
+++ b/manpages/pot/lh_binary_encryption.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_grub.1.pot b/manpages/pot/lh_binary_grub.1.pot
index 1984451..d808558 100644
--- a/manpages/pot/lh_binary_grub.1.pot
+++ b/manpages/pot/lh_binary_grub.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_grub2.1.pot b/manpages/pot/lh_binary_grub2.1.pot
index a7537e1..0d1a07c 100644
--- a/manpages/pot/lh_binary_grub2.1.pot
+++ b/manpages/pot/lh_binary_grub2.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_includes.1.pot b/manpages/pot/lh_binary_includes.1.pot
index d5a4a8c..62fbfb2 100644
--- a/manpages/pot/lh_binary_includes.1.pot
+++ b/manpages/pot/lh_binary_includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_iso.1.pot b/manpages/pot/lh_binary_iso.1.pot
index dfdbdb1..08d7675 100644
--- a/manpages/pot/lh_binary_iso.1.pot
+++ b/manpages/pot/lh_binary_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_linux-image.1.pot b/manpages/pot/lh_binary_linux-image.1.pot
index 3019e69..55f0c90 100644
--- a/manpages/pot/lh_binary_linux-image.1.pot
+++ b/manpages/pot/lh_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_local-hooks.1.pot b/manpages/pot/lh_binary_local-hooks.1.pot
index 0437535..66d9730 100644
--- a/manpages/pot/lh_binary_local-hooks.1.pot
+++ b/manpages/pot/lh_binary_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_local-includes.1.pot b/manpages/pot/lh_binary_local-includes.1.pot
index 09303b8..4506702 100644
--- a/manpages/pot/lh_binary_local-includes.1.pot
+++ b/manpages/pot/lh_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_local-packageslists.1.pot b/manpages/pot/lh_binary_local-packageslists.1.pot
index 461ec90..459bd43 100644
--- a/manpages/pot/lh_binary_local-packageslists.1.pot
+++ b/manpages/pot/lh_binary_local-packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_manifest.1.pot b/manpages/pot/lh_binary_manifest.1.pot
index 0840d8e..d18ac43 100644
--- a/manpages/pot/lh_binary_manifest.1.pot
+++ b/manpages/pot/lh_binary_manifest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_memtest.1.pot b/manpages/pot/lh_binary_memtest.1.pot
index 6031bc6..dabedad 100644
--- a/manpages/pot/lh_binary_memtest.1.pot
+++ b/manpages/pot/lh_binary_memtest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_net.1.pot b/manpages/pot/lh_binary_net.1.pot
index 9c937d8..db55c98 100644
--- a/manpages/pot/lh_binary_net.1.pot
+++ b/manpages/pot/lh_binary_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_rootfs.1.pot b/manpages/pot/lh_binary_rootfs.1.pot
index 4682c72..5348eda 100644
--- a/manpages/pot/lh_binary_rootfs.1.pot
+++ b/manpages/pot/lh_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_silo.1.pot b/manpages/pot/lh_binary_silo.1.pot
index 12c0712..11b03c9 100644
--- a/manpages/pot/lh_binary_silo.1.pot
+++ b/manpages/pot/lh_binary_silo.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_syslinux.1.pot b/manpages/pot/lh_binary_syslinux.1.pot
index aaf7392..c233712 100644
--- a/manpages/pot/lh_binary_syslinux.1.pot
+++ b/manpages/pot/lh_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_tar.1.pot b/manpages/pot/lh_binary_tar.1.pot
index 76aaa74..e0781b2 100644
--- a/manpages/pot/lh_binary_tar.1.pot
+++ b/manpages/pot/lh_binary_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_usb.1.pot b/manpages/pot/lh_binary_usb.1.pot
index 8da87a8..7cdeeb5 100644
--- a/manpages/pot/lh_binary_usb.1.pot
+++ b/manpages/pot/lh_binary_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_virtual-hdd.1.pot b/manpages/pot/lh_binary_virtual-hdd.1.pot
index 0aa6a25..b0d30f3 100644
--- a/manpages/pot/lh_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lh_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_win32-loader.1.pot b/manpages/pot/lh_binary_win32-loader.1.pot
index a30be4d..7ffa31a 100644
--- a/manpages/pot/lh_binary_win32-loader.1.pot
+++ b/manpages/pot/lh_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_binary_yaboot.1.pot b/manpages/pot/lh_binary_yaboot.1.pot
index c509412..5f3d02a 100644
--- a/manpages/pot/lh_binary_yaboot.1.pot
+++ b/manpages/pot/lh_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_bootstrap.1.pot b/manpages/pot/lh_bootstrap.1.pot
index a2363b9..d6f0b29 100644
--- a/manpages/pot/lh_bootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_bootstrap_cache.1.pot b/manpages/pot/lh_bootstrap_cache.1.pot
index 8c9fee6..5ae75b1 100644
--- a/manpages/pot/lh_bootstrap_cache.1.pot
+++ b/manpages/pot/lh_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
index c3dd183..e6980d1 100644
--- a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_bootstrap_copy.1.pot b/manpages/pot/lh_bootstrap_copy.1.pot
index 4907a39..366cd4a 100644
--- a/manpages/pot/lh_bootstrap_copy.1.pot
+++ b/manpages/pot/lh_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_bootstrap_debootstrap.1.pot b/manpages/pot/lh_bootstrap_debootstrap.1.pot
index be28a81..e85ee60 100644
--- a/manpages/pot/lh_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_build.1.pot b/manpages/pot/lh_build.1.pot
index e3f84c1..5c04bdd 100644
--- a/manpages/pot/lh_build.1.pot
+++ b/manpages/pot/lh_build.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot.1.pot b/manpages/pot/lh_chroot.1.pot
index feaf9fe..1cc4694 100644
--- a/manpages/pot/lh_chroot.1.pot
+++ b/manpages/pot/lh_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_apt.1.pot b/manpages/pot/lh_chroot_apt.1.pot
index 8e1af0e..d49d2ce 100644
--- a/manpages/pot/lh_chroot_apt.1.pot
+++ b/manpages/pot/lh_chroot_apt.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_cache.1.pot b/manpages/pot/lh_chroot_cache.1.pot
index 032efa2..136a683 100644
--- a/manpages/pot/lh_chroot_cache.1.pot
+++ b/manpages/pot/lh_chroot_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_debianchroot.1.pot b/manpages/pot/lh_chroot_debianchroot.1.pot
index e3bb672..afab4e9 100644
--- a/manpages/pot/lh_chroot_debianchroot.1.pot
+++ b/manpages/pot/lh_chroot_debianchroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_devpts.1.pot b/manpages/pot/lh_chroot_devpts.1.pot
index 79dd2d9..5d437ad 100644
--- a/manpages/pot/lh_chroot_devpts.1.pot
+++ b/manpages/pot/lh_chroot_devpts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_dpkg.1.pot b/manpages/pot/lh_chroot_dpkg.1.pot
index 1183a50..af5ea38 100644
--- a/manpages/pot/lh_chroot_dpkg.1.pot
+++ b/manpages/pot/lh_chroot_dpkg.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_hacks.1.pot b/manpages/pot/lh_chroot_hacks.1.pot
index 885ffe8..ef8a613 100644
--- a/manpages/pot/lh_chroot_hacks.1.pot
+++ b/manpages/pot/lh_chroot_hacks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_hooks.1.pot b/manpages/pot/lh_chroot_hooks.1.pot
index 258de88..bf37a8f 100644
--- a/manpages/pot/lh_chroot_hooks.1.pot
+++ b/manpages/pot/lh_chroot_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_hostname.1.pot b/manpages/pot/lh_chroot_hostname.1.pot
index 8201232..a26c0ec 100644
--- a/manpages/pot/lh_chroot_hostname.1.pot
+++ b/manpages/pot/lh_chroot_hostname.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_hosts.1.pot b/manpages/pot/lh_chroot_hosts.1.pot
index 2cea4eb..1d9c757 100644
--- a/manpages/pot/lh_chroot_hosts.1.pot
+++ b/manpages/pot/lh_chroot_hosts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_install-packages.1.pot b/manpages/pot/lh_chroot_install-packages.1.pot
index d4f57f4..41c07ad 100644
--- a/manpages/pot/lh_chroot_install-packages.1.pot
+++ b/manpages/pot/lh_chroot_install-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_interactive.1.pot b/manpages/pot/lh_chroot_interactive.1.pot
index ab47b3b..aafa7bd 100644
--- a/manpages/pot/lh_chroot_interactive.1.pot
+++ b/manpages/pot/lh_chroot_interactive.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_linux-image.1.pot b/manpages/pot/lh_chroot_linux-image.1.pot
index 29094e6..7acbe0c 100644
--- a/manpages/pot/lh_chroot_linux-image.1.pot
+++ b/manpages/pot/lh_chroot_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-hooks.1.pot b/manpages/pot/lh_chroot_local-hooks.1.pot
index b30aa43..f4f1b48 100644
--- a/manpages/pot/lh_chroot_local-hooks.1.pot
+++ b/manpages/pot/lh_chroot_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-includes.1.pot b/manpages/pot/lh_chroot_local-includes.1.pot
index 3b326ae..e3e1a41 100644
--- a/manpages/pot/lh_chroot_local-includes.1.pot
+++ b/manpages/pot/lh_chroot_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-packages.1.pot b/manpages/pot/lh_chroot_local-packages.1.pot
index a56b925..87c01c2 100644
--- a/manpages/pot/lh_chroot_local-packages.1.pot
+++ b/manpages/pot/lh_chroot_local-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-packageslists.1.pot b/manpages/pot/lh_chroot_local-packageslists.1.pot
index 2d56497..4c513df 100644
--- a/manpages/pot/lh_chroot_local-packageslists.1.pot
+++ b/manpages/pot/lh_chroot_local-packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-patches.1.pot b/manpages/pot/lh_chroot_local-patches.1.pot
index 3b6958f..cffdc3d 100644
--- a/manpages/pot/lh_chroot_local-patches.1.pot
+++ b/manpages/pot/lh_chroot_local-patches.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_local-preseed.1.pot b/manpages/pot/lh_chroot_local-preseed.1.pot
index 8c88e7b..cb79f9a 100644
--- a/manpages/pot/lh_chroot_local-preseed.1.pot
+++ b/manpages/pot/lh_chroot_local-preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_localization.1.pot b/manpages/pot/lh_chroot_localization.1.pot
index 064529b..b0d1122 100644
--- a/manpages/pot/lh_chroot_localization.1.pot
+++ b/manpages/pot/lh_chroot_localization.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_packages.1.pot b/manpages/pot/lh_chroot_packages.1.pot
index 14307d7..294c68e 100644
--- a/manpages/pot/lh_chroot_packages.1.pot
+++ b/manpages/pot/lh_chroot_packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_packageslists.1.pot b/manpages/pot/lh_chroot_packageslists.1.pot
index 16f82d7..9efd7fd 100644
--- a/manpages/pot/lh_chroot_packageslists.1.pot
+++ b/manpages/pot/lh_chroot_packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_preseed.1.pot b/manpages/pot/lh_chroot_preseed.1.pot
index d8f97ee..a2f5b55 100644
--- a/manpages/pot/lh_chroot_preseed.1.pot
+++ b/manpages/pot/lh_chroot_preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_proc.1.pot b/manpages/pot/lh_chroot_proc.1.pot
index e6ca13a..be03060 100644
--- a/manpages/pot/lh_chroot_proc.1.pot
+++ b/manpages/pot/lh_chroot_proc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_resolv.1.pot b/manpages/pot/lh_chroot_resolv.1.pot
index 408a2a0..7b2c69a 100644
--- a/manpages/pot/lh_chroot_resolv.1.pot
+++ b/manpages/pot/lh_chroot_resolv.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_selinuxfs.1.pot b/manpages/pot/lh_chroot_selinuxfs.1.pot
index 11014dd..2e8e3e5 100644
--- a/manpages/pot/lh_chroot_selinuxfs.1.pot
+++ b/manpages/pot/lh_chroot_selinuxfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_sources.1.pot b/manpages/pot/lh_chroot_sources.1.pot
index 5329511..f460c9e 100644
--- a/manpages/pot/lh_chroot_sources.1.pot
+++ b/manpages/pot/lh_chroot_sources.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_symlinks.1.pot b/manpages/pot/lh_chroot_symlinks.1.pot
index 9661e51..2bfd59d 100644
--- a/manpages/pot/lh_chroot_symlinks.1.pot
+++ b/manpages/pot/lh_chroot_symlinks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_sysfs.1.pot b/manpages/pot/lh_chroot_sysfs.1.pot
index e196dec..001bb31 100644
--- a/manpages/pot/lh_chroot_sysfs.1.pot
+++ b/manpages/pot/lh_chroot_sysfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_sysv-rc.1.pot b/manpages/pot/lh_chroot_sysv-rc.1.pot
index 549d689..7a72403 100644
--- a/manpages/pot/lh_chroot_sysv-rc.1.pot
+++ b/manpages/pot/lh_chroot_sysv-rc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_sysvinit.1.pot b/manpages/pot/lh_chroot_sysvinit.1.pot
index 0784955..a973d1a 100644
--- a/manpages/pot/lh_chroot_sysvinit.1.pot
+++ b/manpages/pot/lh_chroot_sysvinit.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_tasks.1.pot b/manpages/pot/lh_chroot_tasks.1.pot
index 45838c0..cfbd334 100644
--- a/manpages/pot/lh_chroot_tasks.1.pot
+++ b/manpages/pot/lh_chroot_tasks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_chroot_upstart.1.pot b/manpages/pot/lh_chroot_upstart.1.pot
index 9528131..17bbef3 100644
--- a/manpages/pot/lh_chroot_upstart.1.pot
+++ b/manpages/pot/lh_chroot_upstart.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_clean.1.pot b/manpages/pot/lh_clean.1.pot
index 28eb4e3..b37a55d 100644
--- a/manpages/pot/lh_clean.1.pot
+++ b/manpages/pot/lh_clean.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_config.1.pot b/manpages/pot/lh_config.1.pot
index 82b610b..d408508 100644
--- a/manpages/pot/lh_config.1.pot
+++ b/manpages/pot/lh_config.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
@@ -2034,9 +2034,9 @@ msgstr ""
 #. type: Plain text
 #: en/lh_config.1:330
 msgid ""
-"sets the language of a live system by installing l10n related packages and "
-"enables generation of the correct locales through automatically setting the "
-"right boot parameters."
+"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 "
+"boot parameters, those need to be done through the bootappend-live parameter."
 msgstr ""
 
 #. type: IP
diff --git a/manpages/pot/lh_local.1.pot b/manpages/pot/lh_local.1.pot
index fb1dfc9..19ee288 100644
--- a/manpages/pot/lh_local.1.pot
+++ b/manpages/pot/lh_local.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source.1.pot b/manpages/pot/lh_source.1.pot
index 61e8a65..69e9255 100644
--- a/manpages/pot/lh_source.1.pot
+++ b/manpages/pot/lh_source.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_checksums.1.pot b/manpages/pot/lh_source_checksums.1.pot
index 0cffda0..4297e79 100644
--- a/manpages/pot/lh_source_checksums.1.pot
+++ b/manpages/pot/lh_source_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_debian-live.1.pot b/manpages/pot/lh_source_debian-live.1.pot
index 95f4749..a4a0ec8 100644
--- a/manpages/pot/lh_source_debian-live.1.pot
+++ b/manpages/pot/lh_source_debian-live.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_debian.1.pot b/manpages/pot/lh_source_debian.1.pot
index c2ad609..3dfed47 100644
--- a/manpages/pot/lh_source_debian.1.pot
+++ b/manpages/pot/lh_source_debian.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_disk.1.pot b/manpages/pot/lh_source_disk.1.pot
index 4517370..d0c73dc 100644
--- a/manpages/pot/lh_source_disk.1.pot
+++ b/manpages/pot/lh_source_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_iso.1.pot b/manpages/pot/lh_source_iso.1.pot
index e3e5f3e..8aa8bb7 100644
--- a/manpages/pot/lh_source_iso.1.pot
+++ b/manpages/pot/lh_source_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_net.1.pot b/manpages/pot/lh_source_net.1.pot
index f659bed..9464b05 100644
--- a/manpages/pot/lh_source_net.1.pot
+++ b/manpages/pot/lh_source_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_tar.1.pot b/manpages/pot/lh_source_tar.1.pot
index 50207f7..ced0803 100644
--- a/manpages/pot/lh_source_tar.1.pot
+++ b/manpages/pot/lh_source_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_usb.1.pot b/manpages/pot/lh_source_usb.1.pot
index 7b7c027..0366d00 100644
--- a/manpages/pot/lh_source_usb.1.pot
+++ b/manpages/pot/lh_source_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_source_virtual-hdd.1.pot b/manpages/pot/lh_source_virtual-hdd.1.pot
index 17e20fb..5dbab6d 100644
--- a/manpages/pot/lh_source_virtual-hdd.1.pot
+++ b/manpages/pot/lh_source_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lh_testroot.1.pot b/manpages/pot/lh_testroot.1.pot
index 4a4796d..9e3eab4 100644
--- a/manpages/pot/lh_testroot.1.pot
+++ b/manpages/pot/lh_testroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/live-helper.7.pot b/manpages/pot/live-helper.7.pot
index 6fb3bc0..0369675 100644
--- a/manpages/pot/live-helper.7.pot
+++ b/manpages/pot/live-helper.7.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-06-24 01:50+0300\n"
+"POT-Creation-Date: 2010-07-02 18:22+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"
@@ -82,7 +82,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2010-06-24"
+msgid "2010-07-02"
 msgstr ""
 
 #. type: TH
@@ -117,7 +117,7 @@ msgstr ""
 #: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
 #: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
 #, no-wrap
-msgid "2.0~a16"
+msgid "2.0~a17"
 msgstr ""
 
 #. type: TH
diff --git a/templates/cgi/debian-official/build.html b/templates/cgi/debian-official/build.html
index 369b764..baabdc5 100644
--- a/templates/cgi/debian-official/build.html
+++ b/templates/cgi/debian-official/build.html
@@ -43,9 +43,10 @@
 
 <table>
 	<tr><td>--binary-indices: </td><td>LH_BINARY_INDICES</td></tr>
-	<tr><td>--bootappend: </td><td>LH_BOOTAPPEND</td></tr>
+	<tr><td>--bootappend-live: </td><td>LH_BOOTAPPEND_LIVE</td></tr>
 	<tr><td>--bootloader: </td><td>LH_BOOTLOADER</td></tr>
 	<tr><td>--debian-installer: </td><td>LH_DEBIAN_INSTALLER</td></tr>
+	<tr><td>--bootappend-install: </td><td>LH_BOOTAPPEND_INSTALL</td></tr>
 	<tr><td>--encryption: </td><td>LH_ENCRYPTION</td></tr>
 	<tr><td>--iso-application: </td><td>LH_ISO_APPLICATION</td></tr>
 	<tr><td>--iso-preparer: </td><td>LH_ISO_PREPARER</td></tr>
diff --git a/templates/cgi/debian-official/form.html b/templates/cgi/debian-official/form.html
index 6facc1c..099a9fa 100644
--- a/templates/cgi/debian-official/form.html
+++ b/templates/cgi/debian-official/form.html
@@ -214,8 +214,8 @@
 			</td>
 		</tr>
 		<tr>
-			<td><label for="Bootappend">--bootappend:</label> </td>
-			<td><input id="Bootappend" name="bootappend" maxlength="256" size="50" type="text" value="" /></td>
+			<td><label for="Bootappend_Live">--bootappend-live:</label> </td>
+			<td><input id="Bootappend_Live" name="bootappend_live" maxlength="256" size="50" type="text" value="" /></td>
 		</tr>
 		<tr>
 			<td><label for="Bootloader">--bootloader:</label> </td>
@@ -236,6 +236,10 @@
 			</td>
 		</tr>
 		<tr>
+			<td><label for="Bootappend_Install">--bootappend-install:</label> </td>
+			<td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
+		</tr>
+		<tr>
 			<td><label for="Encryption">--encryption:</label> </td>
 			<td>
 				<select id="Encryption" name="encryption" size="1">
@@ -322,5 +326,7 @@
 <input type="reset" value="Reset" />
 &nbsp;
 <input type="submit" value="Submit" />
+&nbsp;
+Version: VERSION
 
 </form>
diff --git a/templates/cgi/debian-unofficial/build.html b/templates/cgi/debian-unofficial/build.html
index 78c4309..73d8a56 100644
--- a/templates/cgi/debian-unofficial/build.html
+++ b/templates/cgi/debian-unofficial/build.html
@@ -43,9 +43,10 @@
 
 <table>
 	<tr><td>--binary-indices: </td><td>LH_BINARY_INDICES</td></tr>
-	<tr><td>--bootappend: </td><td>LH_BOOTAPPEND</td></tr>
+	<tr><td>--bootappend-live: </td><td>LH_BOOTAPPEND_LIVE</td></tr>
 	<tr><td>--bootloader: </td><td>LH_BOOTLOADER</td></tr>
 	<tr><td>--debian-installer: </td><td>LH_DEBIAN_INSTALLER</td></tr>
+	<tr><td>--bootappend-install: </td><td>LH_BOOTAPPEND_INSTALL</td></tr>
 	<tr><td>--encryption: </td><td>LH_ENCRYPTION</td></tr>
 	<tr><td>--iso-application: </td><td>LH_ISO_APPLICATION</td></tr>
 	<tr><td>--iso-preparer: </td><td>LH_ISO_PREPARER</td></tr>
diff --git a/templates/cgi/debian-unofficial/form.html b/templates/cgi/debian-unofficial/form.html
index e3bc4dc..58516ee 100644
--- a/templates/cgi/debian-unofficial/form.html
+++ b/templates/cgi/debian-unofficial/form.html
@@ -213,8 +213,8 @@
 			</td>
 		</tr>
 		<tr>
-			<td><label for="Bootappend">--bootappend:</label> </td>
-			<td><input id="Bootappend" name="bootappend" maxlength="256" size="50" type="text" value="" /></td>
+			<td><label for="Bootappend_Live">--bootappend-live:</label> </td>
+			<td><input id="Bootappend_Live" name="bootappend_live" maxlength="256" size="50" type="text" value="" /></td>
 		</tr>
 		<tr>
 			<td><label for="Bootloader">--bootloader:</label> </td>
@@ -235,6 +235,10 @@
 			</td>
 		</tr>
 		<tr>
+			<td><label for="Bootappend_Install">--bootappend-install:</label> </td>
+			<td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
+		</tr>
+		<tr>
 			<td><label for="Encryption">--encryption:</label> </td>
 			<td>
 				<select id="Encryption" name="encryption" size="1">
@@ -342,5 +346,7 @@
 <input type="reset" value="Reset" />
 &nbsp;
 <input type="submit" value="Submit" />
+&nbsp;
+Version: VERSION
 
 </form>

-- 
live-helper



More information about the debian-live-changes mailing list