[SCM] live-helper branch, upstream, updated. upstream/2.0_a12-1-g0254a05
Daniel Baumann
daniel at debian.org
Sun May 23 10:51:03 UTC 2010
The following commit has been merged in the upstream branch:
commit 0254a05f82acba979f2eeefa89594c531dc27f3d
Author: Daniel Baumann <daniel at debian.org>
Date: Sun May 23 12:44:35 2010 +0200
Adding upstream version 2.0~a13.
diff --git a/Makefile b/Makefile
index 450fe3d..9896dd3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,23 +4,34 @@ SHELL := sh -e
LANGUAGES = de
-all: test install
+all: test build
test:
- # Checking for syntax errors
- for SCRIPT in live-helper.sh cgi/* functions/* examples/*/*.sh helpers/* hooks/*; \
+ @echo -n "Checking for syntax errors"
+
+ @for SCRIPT in live-helper.sh cgi/* functions/* examples/*/*.sh helpers/* hooks/*; \
do \
sh -n $${SCRIPT}; \
+ echo -n "."; \
done
- # Checking for bashisms
- if [ -x /usr/bin/checkbashisms ]; \
+ @echo " done."
+
+ @echo -n "Checking for bashisms"
+
+ @if [ -x /usr/bin/checkbashisms ]; \
then \
- checkbashisms live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \
+ for SCRIPT in live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \
+ do \
+ checkbashisms $${SCRIPT}; \
+ echo -n "."; \
+ done; \
else \
echo "WARNING: skipping bashism test - you need to install devscripts."; \
fi
+ @echo " done."
+
build:
@echo "Nothing to build."
diff --git a/functions/common.sh b/functions/common.sh
index c38961f..1e4890c 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
PROGRAM="$(basename ${0})"
PACKAGE="live-helper"
-VERSION="2.0~a12-1"
+VERSION="2.0~a13-1"
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
PATH="${PWD}/auto/helpers:${PATH}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 6c4444f..e16635d 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -817,7 +817,7 @@ Set_defaults ()
LH_CHECKSUMS="${LH_CHECKSUMS:-md5}"
# Setting chroot option
- LH_CHROOT_BUILD="${LH_CHROOT_BUILD:-true}"
+ LH_BUILD_WITH_CHROOT="${LH_BUILD_WITH_CHROOT:-true}"
# Setting debian-installer option
LH_DEBIAN_INSTALLER="${LH_DEBIAN_INSTALLER:-false}"
diff --git a/functions/exit.sh b/functions/exit.sh
index b32fd00..338f285 100755
--- a/functions/exit.sh
+++ b/functions/exit.sh
@@ -28,7 +28,7 @@ Exit ()
umount ${DIRECTORY} > /dev/null 2>&1 || true
done
else
- for DIRECTORY in /dev/pts /dev /proc /selinux /sys
+ for DIRECTORY in /dev/shm /dev/pts /dev /proc /selinux /sys
do
umount -f chroot/${DIRECTORY} > /dev/null 2>&1 || true
done
diff --git a/functions/packages.sh b/functions/packages.sh
index 7d7f5f9..4b833ce 100755
--- a/functions/packages.sh
+++ b/functions/packages.sh
@@ -28,7 +28,7 @@ Check_package ()
Install_package ()
{
- if [ -n "${_LH_PACKAGES}" ] && [ "${LH_CHROOT_BUILD}" != "false" ]
+ if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
then
case "${LH_APT}" in
apt|apt-get)
@@ -44,7 +44,7 @@ Install_package ()
Remove_package ()
{
- if [ -n "${_LH_PACKAGES}" ] && [ "${LH_CHROOT_BUILD}" != "false" ]
+ if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
then
case "${LH_APT}" in
apt|apt-get)
@@ -68,7 +68,7 @@ Check_installed ()
FILE="${1}"
PACKAGE="${2}"
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
then
diff --git a/helpers/binary b/helpers/binary
index 9b15189..11a1781 100755
--- a/helpers/binary
+++ b/helpers/binary
@@ -29,7 +29,7 @@ Setup_cleanup
# Preparing root filesystem
lh binary_chroot ${*}
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
# Configuring chroot
lh chroot_devpts install ${*}
@@ -67,7 +67,7 @@ lh binary_local-includes ${*}
lh binary_local-hooks ${*}
lh binary_checksums ${*}
-if [ "${LH_CHROOT_BUILD}" != "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" != "true" ]
then
lh chroot_devpts install ${*}
lh chroot_proc install ${*}
@@ -82,7 +82,7 @@ lh binary_tar ${*}
lh binary_usb ${*}
lh binary_virtual-hdd ${*}
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
# Deconfiguring chroot
rm -f .stage/chroot_sources
diff --git a/helpers/binary_chroot b/helpers/binary_chroot
index c9dc4dc..4b3c249 100755
--- a/helpers/binary_chroot
+++ b/helpers/binary_chroot
@@ -67,7 +67,7 @@ then
find /dev | cpio -dmpu chroot
fi
-if [ "${LH_CHROOT_BUILD}" = "false" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
then
exit 0
fi
diff --git a/helpers/binary_disk b/helpers/binary_disk
index 09c0b1b..d678cea 100755
--- a/helpers/binary_disk
+++ b/helpers/binary_disk
@@ -65,7 +65,7 @@ case "${LH_MODE}" in
;;
ubuntu)
- TITLE="Ubuntu GNU/Linux"
+ TITLE="Ubuntu"
STRING="Build ${ARCHITECTURE}"
TRACE=""
;;
diff --git a/helpers/binary_encryption b/helpers/binary_encryption
index 1808fd3..db32227 100755
--- a/helpers/binary_encryption
+++ b/helpers/binary_encryption
@@ -85,7 +85,7 @@ Install_package
Echo_message "Encrypting binary/%s/filesystem.%s with %s..." "${INITFS}" "${LH_CHROOT_FILESYSTEM}" "${LH_ENCRYPTION}"
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
# Moving image
mv binary/${INITFS}/filesystem.${LH_CHROOT_FILESYSTEM} chroot
@@ -100,7 +100,7 @@ do
Echo " (Passwords must be at least 20 characters long)"
echo
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
if Chroot chroot aespipe -e ${LH_ENCRYPTION} -T \
< chroot/filesystem.${LH_CHROOT_FILESYSTEM} \
diff --git a/helpers/binary_grub b/helpers/binary_grub
index 2fd2a5a..40a3443 100755
--- a/helpers/binary_grub
+++ b/helpers/binary_grub
@@ -67,7 +67,7 @@ Grub_live_entry ()
APPEND="${4}"
LINUX_LIVE="${LINUX_LIVE}\ntitle\t\tDebian GNU/Linux - ${LABEL}"
- LINUX_LIVE="${LINUX_LIVE}\nkernel\t\t/${KERNEL} boot=${INITFS} LH_BOOTAPPEND_LIVE ${APPEND}"
+ LINUX_LIVE="${LINUX_LIVE}\nkernel\t\t/${KERNEL} boot=${INITFS} live-config LH_BOOTAPPEND_LIVE ${APPEND}"
LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
}
@@ -285,7 +285,7 @@ case ${LH_BINARY_IMAGES} in
;;
esac
-if [ "${LH_CHROOT_BUILD}" = "false" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
then
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
fi
diff --git a/helpers/binary_grub2 b/helpers/binary_grub2
index 0d17214..2afae22 100755
--- a/helpers/binary_grub2
+++ b/helpers/binary_grub2
@@ -67,7 +67,7 @@ Grub_live_entry ()
APPEND="${4}"
LINUX_LIVE="${LINUX_LIVE}\nmenuentry \"Debian GNU/Linux - ${LABEL}\" {"
- LINUX_LIVE="${LINUX_LIVE}\nlinux\t\t/${KERNEL} boot=${INITFS} LH_BOOTAPPEND_LIVE ${APPEND}"
+ LINUX_LIVE="${LINUX_LIVE}\nlinux\t\t/${KERNEL} boot=${INITFS} live-config LH_BOOTAPPEND_LIVE ${APPEND}"
LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
LINUX_LIVE="${LINUX_LIVE}\n}"
}
@@ -258,7 +258,7 @@ case ${LH_BINARY_IMAGES} in
;;
esac
-if [ "${LH_CHROOT_BUILD}" = "false" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
then
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
fi
diff --git a/helpers/binary_iso b/helpers/binary_iso
index 0294c07..47de9d6 100755
--- a/helpers/binary_iso
+++ b/helpers/binary_iso
@@ -194,12 +194,12 @@ then
cat >> binary.sh << EOF
-isohybrid ${IMAGE}
+isohybrid ${ISOHYBRID_OPTIONS} ${IMAGE}
EOF
fi
-case "${LH_CHROOT_BUILD}" in
+case "${LH_BUILD_WITH_CHROOT}" in
true)
# Moving image
mv binary.sh chroot
diff --git a/helpers/binary_memtest b/helpers/binary_memtest
index 6c59f10..8afcb9f 100755
--- a/helpers/binary_memtest
+++ b/helpers/binary_memtest
@@ -48,7 +48,7 @@ then
exit 0
fi
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
if [ -f chroot/usr/sbin/grub ] && [ ! -f chroot/boot/grub/menu.lst ]
@@ -94,7 +94,7 @@ Check_multiarchitecture
mkdir -p "${DESTDIR}"
# Installing memtest
-case "${LH_CHROOT_BUILD}" in
+case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/boot/${LH_MEMTEST}.bin "${DESTDIR}"/memtest
;;
diff --git a/helpers/binary_rootfs b/helpers/binary_rootfs
index 635adbb..c813d46 100755
--- a/helpers/binary_rootfs
+++ b/helpers/binary_rootfs
@@ -83,7 +83,7 @@ do
done
# Handling chroot excludes
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
if [ -f config/binary_rootfs/excludes ]
then
@@ -135,7 +135,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
RESERVED_PERCENTAGE="--reserved-percentage"
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
Chroot chroot "genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot filesystem.${LH_CHROOT_FILESYSTEM}"
@@ -219,7 +219,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
JFFS2_OPTIONS="--eraseblock=${LH_JFFS2_ERASEBLOCK}"
fi
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
Chroot chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2"
@@ -288,7 +288,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
rm -rf binary/${INITFS}/filesystem.dir
fi
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
mv chroot/chroot binary/${INITFS}/filesystem.dir
;;
@@ -334,7 +334,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
cp config/binary_rootfs/squashfs.sort chroot #FIXME
fi
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
# Create image
Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
@@ -421,7 +421,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
rm -rf binary
fi
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
mv chroot/chroot binary
;;
diff --git a/helpers/binary_silo b/helpers/binary_silo
index 063944c..ab8dd87 100755
--- a/helpers/binary_silo
+++ b/helpers/binary_silo
@@ -81,7 +81,7 @@ Silo_live_entry ()
LINUX_LIVE="${LINUX_LIVE}\nimage=${DIRECTORY}/${KERNEL}\n"
LINUX_LIVE="${LINUX_LIVE}\t label=${LABEL}\n"
LINUX_LIVE="${LINUX_LIVE}\t initrd=${DIRECTORY}/${INITRD}\n"
- LINUX_LIVE="${LINUX_LIVE}\t append=\"boot=${INITFS} LH_BOOTAPPEND_LIVE ${APPEND}\"\n"
+ LINUX_LIVE="${LINUX_LIVE}\t append=\"boot=${INITFS} live-config LH_BOOTAPPEND_LIVE ${APPEND}\"\n"
}
Silo_install_entry ()
@@ -229,7 +229,7 @@ case "${LH_BINARY_IMAGES}" in
# Copying silo
mkdir -p binary/boot
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/boot/second.b binary/boot
;;
diff --git a/helpers/binary_syslinux b/helpers/binary_syslinux
index e3a8f72..af7e9cd 100755
--- a/helpers/binary_syslinux
+++ b/helpers/binary_syslinux
@@ -126,7 +126,7 @@ Syslinux_live_entry ()
fi
LINUX_LIVE="${LINUX_LIVE}\tkernel ${LIVE_KERNEL_PATH}/${KERNEL}\n"
- LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} ${LH_BOOTAPPEND_LIVE} ${APPEND}\n"
+ LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} live-config ${LH_BOOTAPPEND_LIVE} ${APPEND}\n"
# Failsafe kernel
LINUX_LIVE="${LINUX_LIVE}\nlabel ${LABEL}failsafe\n"
@@ -138,7 +138,7 @@ Syslinux_live_entry ()
fi
LINUX_LIVE="${LINUX_LIVE}\tkernel ${LIVE_KERNEL_PATH}/${KERNEL}\n"
- LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} ${LH_BOOTAPPEND_LIVE} ${APPEND} ${FAILSAFE}\n"
+ LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} live-config ${LH_BOOTAPPEND_LIVE} ${APPEND} ${FAILSAFE}\n"
}
Syslinux_install_entry ()
@@ -220,7 +220,7 @@ Copy_syslinux_templates ()
;;
esac
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/usr/lib/syslinux/"${MENUMODULE}" ${DATA_PATH}
;;
@@ -582,7 +582,7 @@ Configure_syslinux_templates
# Configure syslinux setup per boot method
case "${LH_BINARY_IMAGES}" in
iso*)
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}
;;
@@ -601,7 +601,7 @@ case "${LH_BINARY_IMAGES}" in
;;
net)
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/usr/lib/syslinux/pxelinux.0 ${KERNEL_PATH}
;;
@@ -632,7 +632,7 @@ case "${LH_BINARY_IMAGES}" in
;;
usb*|tar)
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin
;;
diff --git a/helpers/binary_usb b/helpers/binary_usb
index b2a800f..7d84305 100755
--- a/helpers/binary_usb
+++ b/helpers/binary_usb
@@ -141,7 +141,7 @@ case "${LH_BINARY_FILESYSTEM}" in
;;
esac
-case "${LH_CHROOT_BUILD}" in
+case "${LH_BUILD_WITH_CHROOT}" in
true)
Chroot chroot "parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE}" || true
Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true
@@ -190,7 +190,7 @@ case "${LH_BINARY_FILESYSTEM}" in
;;
esac
-case "${LH_CHROOT_BUILD}" in
+case "${LH_BUILD_WITH_CHROOT}" in
true)
Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}"
;;
@@ -246,7 +246,7 @@ rmdir chroot/binary.tmp
if [ "${LH_BOOTLOADER}" = "syslinux" ]
then
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
Chroot chroot "syslinux ${FREELO}"
;;
diff --git a/helpers/binary_virtual-hdd b/helpers/binary_virtual-hdd
index 8b03910..4e61c6b 100755
--- a/helpers/binary_virtual-hdd
+++ b/helpers/binary_virtual-hdd
@@ -42,7 +42,7 @@ Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
case "${LH_BINARY_FILESYSTEM}" in
ext2|ext3)
@@ -66,7 +66,7 @@ fi
Echo_message "Creating virtual disk image..."
dd if=/dev/zero of=binary-virtual.img bs=1024k count=0 seek=${LH_VIRTUAL_ROOT_SIZE}
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
mv binary-virtual.img chroot
diff --git a/helpers/binary_win32-loader b/helpers/binary_win32-loader
index bf4eb6c..759ebac 100755
--- a/helpers/binary_win32-loader
+++ b/helpers/binary_win32-loader
@@ -50,11 +50,11 @@ case "${LH_ARCHITECTURE}" in
;;
*)
- WIN32_LOADER="/usr/share/win32-loader"
+ WIN32_LOADER="/usr/share/win32"
;;
esac
- if [ "${LH_CHROOT_BUILD}" = "true" ]
+ if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
# Checking depends
Check_package chroot/${WIN32_LOADER}/win32-loader.exe win32-loader
diff --git a/helpers/binary_yaboot b/helpers/binary_yaboot
index 08269f3..148424e 100755
--- a/helpers/binary_yaboot
+++ b/helpers/binary_yaboot
@@ -71,7 +71,7 @@ Yaboot_live_entry ()
LINUX_LIVE="${LINUX_LIVE}\nimage=${DIRECTORY}/${KERNEL}\n"
LINUX_LIVE="${LINUX_LIVE}\tlabel=${LABEL}\n"
LINUX_LIVE="${LINUX_LIVE}\tinitrd=${DIRECTORY}/${INITRD}\n"
- LINUX_LIVE="${LINUX_LIVE}\tappend=\"boot=${INITFS} LH_BOOTAPPEND_LIVE ${APPEND}\"\n"
+ LINUX_LIVE="${LINUX_LIVE}\tappend=\"boot=${INITFS} live-config LH_BOOTAPPEND_LIVE ${APPEND}\"\n"
LINUX_LIVE="${LINUX_LIVE}\tinitrd-size=10240\n"
}
@@ -276,7 +276,7 @@ case "${LH_BINARY_IMAGES}" in
# Copying yaboot
mkdir -p binary/yaboot
- case "${LH_CHROOT_BUILD}" in
+ case "${LH_BUILD_WITH_CHROOT}" in
true)
cp chroot/usr/lib/yaboot/yaboot binary/yaboot
;;
diff --git a/helpers/chroot_hacks b/helpers/chroot_hacks
index 81af37a..dfad9d1 100755
--- a/helpers/chroot_hacks
+++ b/helpers/chroot_hacks
@@ -110,6 +110,11 @@ do
esac
done
+# Removing openssh-server hostkeys,
+# they are regenerated by live-config.
+#rm -f chroot/etc/ssh/ssh_host_dsa_key chroot/etc/ssh/ssh_host_dsa_key.pub
+#rm -f chroot/etc/ssh/ssh_host_rsa_key chroot/etc/ssh/ssh_host_rsa_key.pub
+
# Removing udev mac caching rule
rm -f chroot/etc/udev/rules.d/*persistent-net.rules
@@ -137,7 +142,17 @@ EOF
esac
# Update initramfs (always, because of udev rules in initrd)
-Chroot chroot "update-initramfs -k all -t -u"
+case "${LH_INITRAMFS}" in
+ live-initramfs)
+ #UPDATE_INITRAMFS_OPTIONS="LIVE_GENERATE_UUID=1"
+ ;;
+
+ casper)
+ UPDATE_INITRAMFS_OPTIONS="CASPER_GENERATE_UUID=1"
+ ;;
+esac
+
+Chroot chroot "${UPDATE_INITRAMFS_OPTIONS} update-initramfs -k all -t -u"
# Ensure readable permissions on initramfs. loop-aes-utils sets umask to
# protect GPG keys, which live-helper does not support.
diff --git a/helpers/chroot_sources b/helpers/chroot_sources
index d30ac73..3e82350 100755
--- a/helpers/chroot_sources
+++ b/helpers/chroot_sources
@@ -191,7 +191,7 @@ case "${1}" in
# If we bootstrapped a minimal chroot, we need
# to install apt-utils before we have have
# completed all the indices.
- case "${LH_BOOTSTRAP_FLAVOUR}" in
+ case "${LH_PACKAGES_LISTS}" in
stripped|minimal)
Chroot chroot "apt-get update"
;;
diff --git a/helpers/config b/helpers/config
index b9053d5..6ca0afd 100755
--- a/helpers/config
+++ b/helpers/config
@@ -53,7 +53,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--cache-packages true|false]\n\
\t [--cache-stages STAGE|\"STAGES\"]\n\
\t [--checksums md5|sha1|sha256|none]\n\
-\t [--chroot-build true|false]\n\
+\t [--build-with-chroot true|false]\n\
\t [--chroot-filesystem ext2|ext3|squashfs|plain|jffs2]\n\
\t [-c|--conffile FILE]\n\
\t [--clean\n\
@@ -78,6 +78,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--includes PATH]\n\
\t [--initramfs auto|live-initramfs|casper]\n\
\t [--interactive shell]\n\
+\t [--isohybrid-options OPTION|\"OPTIONS\"]\n\
\t [--iso-application NAME]\n\
\t [--iso-preparer NAME]\n\
\t [--iso-publisher NAME]\n\
@@ -143,9 +144,9 @@ Local_arguments ()
mirror-binary-security:,mirror-binary-volatile:,mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:,
gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,
packages:,packages-lists:,tasks:,security:,volatile:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,
- binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,
+ binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,build-with-chroot:,
debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
- encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:,
+ encryption:,grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:,
iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,
net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,
net-cow-server:,net-tarball:,syslinux-splash:,syslinux-timeout:,syslinux-menu:,
@@ -568,8 +569,8 @@ Local_arguments ()
shift 2
;;
- --chroot-build)
- LH_CHROOT_BUILD="${2}"
+ --build-with-chroot)
+ LH_BUILD_WITH_CHROOT="${2}"
shift 2
;;
@@ -608,6 +609,11 @@ Local_arguments ()
shift 2
;;
+ --isohybrid-options)
+ LH_ISOHYBRID_OPTIONS="${2}"
+ shift 2
+ ;;
+
--iso-application)
LH_ISO_APPLICATION="${2}"
shift 2
@@ -955,6 +961,7 @@ _QUIET="${_QUIET}"
APT_OPTIONS="${APT_OPTIONS}"
APTITUDE_OPTIONS="${APTITUDE_OPTIONS}"
GZIP_OPTIONS="${GZIP_OPTIONS}"
+ISOHYBRID_OPTIONS="${ISOHYBRID_OPTIONS}"
EOF
# Creating lh_bootstrap_* configuration
@@ -1155,10 +1162,10 @@ LH_BOOTLOADER="${LH_BOOTLOADER}"
# (Default: ${LH_CHECKSUMS})
LH_CHECKSUMS="${LH_CHECKSUMS}"
-# \${LH_CHROOT_BUILD: control if we build binary images chrooted
-# (Default: ${LH_CHROOT_BUILD})
+# \${LH_BUILD_WITH_CHROOT: control if we build binary images chrooted
+# (Default: ${LH_BUILD_WITH_CHROOT})
# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
-LH_CHROOT_BUILD="${LH_CHROOT_BUILD}"
+LH_BUILD_WITH_CHROOT="${LH_BUILD_WITH_CHROOT}"
# \$LH_DEBIAN_INSTALLER: set debian-installer
# (Default: ${LH_DEBIAN_INSTALLER})
diff --git a/helpers/source_disk b/helpers/source_disk
index bad2770..8a2ae79 100755
--- a/helpers/source_disk
+++ b/helpers/source_disk
@@ -65,7 +65,7 @@ case "${LH_MODE}" in
;;
ubuntu)
- TITLE="Ubuntu GNU/Linux"
+ TITLE="Ubuntu"
STRING="Build ${ARCHITECTURE}"
TRACE=""
;;
diff --git a/helpers/source_virtual-hdd b/helpers/source_virtual-hdd
index 74f7af5..b67ee3f 100755
--- a/helpers/source_virtual-hdd
+++ b/helpers/source_virtual-hdd
@@ -47,7 +47,7 @@ Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
case "${LH_BINARY_FILESYSTEM}" in
ext2|ext3)
@@ -70,7 +70,7 @@ DU_DIM="$(du -ms source | cut -f1)"
REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})"
dd if=/dev/zero of=source-virtual.img bs=1024k count=0 seek=${REAL_DIM}
-if [ "${LH_CHROOT_BUILD}" = "true" ]
+if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
mv source-virtual.img chroot
diff --git a/lists/gnome b/lists/gnome
index 0a5ec3a..50d9bb4 100644
--- a/lists/gnome
+++ b/lists/gnome
@@ -3,7 +3,10 @@
## LH: GNOME Desktop
#include <gnome-core>
-gdm-themes gnome-desktop-environment system-config-printer gnome-screensaver
+#if DISTRIBUTION lenny
+gdm-themes
+#endif
+gnome-desktop-environment system-config-printer gnome-screensaver
gnome-themes-extras
rhythmbox synaptic
diff --git a/lists/kde-core b/lists/kde-core
index 1153866..8483c41 100644
--- a/lists/kde-core
+++ b/lists/kde-core
@@ -6,12 +6,8 @@
#if DISTRIBUTION lenny
kde-core
#endif
-#if DISTRIBUTION sid
-kde-minimal
-#endif
-#if DISTRIBUTION sid
+#if DISTRIBUTION squeeze sid
kde-plasma-desktop
#endif
-
kdm
desktop-base
diff --git a/lists/lxde b/lists/lxde
index 6777979..4089f9b 100644
--- a/lists/lxde
+++ b/lists/lxde
@@ -9,7 +9,7 @@ gdm
lxnm
#endif
#if DISTRIBUTION squeeze sid
-gdm3
+nodm
wicd
#endif
desktop-base
diff --git a/lists/minimal b/lists/minimal
index 8da2644..df86ad5 100644
--- a/lists/minimal
+++ b/lists/minimal
@@ -2,4 +2,4 @@
## LH: Minimal
-eject file sudo
+eject file user-setup sudo
diff --git a/manpages/de/lh.de.1 b/manpages/de/lh.de.1
index 05ac94d..db60e99 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "Debian Live Projekt"
.SH NAME
\fBlh\fP \- Wrapper fuer live\-helper Programme
diff --git a/manpages/de/lh_binary.de.1 b/manpages/de/lh_binary.de.1
index 00f3a8e..817eb4e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 a350830..4e783a9 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 ed7e287..b347d24 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 43ed2a3..bebc88f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 c2847e0..88c9672 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 49e4c43..3b123d1 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 f8978bf..582f498 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 477f953..a6ac5b9 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 fc814a6..6915667 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 97f6072..0782143 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 fa318dc..3b0f41a 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2cf27fc..577b85e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 71acbe8..bcf9d99 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2720aaf..5c225d0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 341b57c..3041bd0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e219813..3694e72 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e45713a..5808d24 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 357defd..9362ffb 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2e1cdab..d24572e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 4e8c60a..c28d86f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 7c4ba82..657a4d8 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 ef59c8e..2f071b4 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 610f5b2..118caff 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 0b7fb80..9bfb868 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 0bbb964..e95262f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 bbaa60f..3c5b265 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 296e344..62bfe3e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 65306d5..cc82ccf 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 f875f04..27e96db 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 fa309d8..14c54ae 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 956890f..f0ed47a 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 faa8257..92595d8 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 01a1734..d68108e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 4e06a95..0a0e744 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e4ff137..9a6aab0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 7aae895..0fd5759 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 a32b5ac..ee289f8 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 6476791..2e53432 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 418b64f..aca1292 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2dab756..7072b96 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 cc52566..54f40b5 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 0ad9428..ec7810d 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 140059f..9fdb2ff 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 cc7c66e..d9d105f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 3aa8e34..d01662c 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 4ebd043..b67adcc 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2166c64..179ad48 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 a789fa9..5947dad 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 a2b8f76..24cc3dc 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e48c074..835b909 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2cfb183..5bf446e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 d6cb73c..65f954d 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 d6a044e..dc02d4d 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 629b78d..6756bdb 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 9f414a0..57d655f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 737c7c0..df74a2f 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 7b63559..d5190c5 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 7ea0652..4fa1fba 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 275950e..d967c61 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e0f409e..7678b51 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 a8d2c5c..6ed81bb 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 6c38438..cf28318 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 788369b..3c7dc59 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 b5c69a5..0b6b545 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 3ee5d90..1225988 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "Debian Live Projekt"
.SH NAME
\fBlh clean\fP \- Raeumt das Arbeitsverzeichnis auf
diff --git a/manpages/de/lh_config.de.1 b/manpages/de/lh_config.de.1
index 2c186f4..52efbb9 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "Debian Live Projekt"
.SH NAME
\fBlh config\fP \- Erstellen des config Verzeichnisses
@@ -64,7 +64,7 @@
.br
[\fB\-\-checksums\fP md5|sha1|sha256|none]
.br
- [\fB\-\-chroot\-build\fP true|false]
+ [\fB\-\-build\-with\-chroot\fP true|false]
.br
[\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2]
.br
@@ -359,7 +359,7 @@ built\-in integrity\-check to verify the medium if specified at boot
prompt. In general, this should not be false and is an important feature of
live system released to the public. However, during development of very big
images it can save some time by not calculating the checksums.
-.IP "\fB\-\-chroot\-build\fP true|false" 4
+.IP "\fB\-\-build\-with\-chroot\fP true|false" 4
defines whetever live\-helper should use the tools from within the chroot to
build the binary image or not by using and including the host systems
tools. This is a very dangerous option, using the tools of the host system
@@ -532,16 +532,15 @@ sets the location of the debian package mirror that should end up configured
in the final image and which is the one a user would see and use. This has
not necessarily to be the same that is used to build the image, e.g. if you
use a local mirror but want to have an official mirror in the image. By
-default, the same value that is used for \-\-mirror\-chroot is used here unless
-specified different.
+default, 'http://cdn.debian.net/debian/' is used.
.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
sets the location of the debian security package mirror that should end up
-configuered in the final image. By default, the same value that is used for
-\-\-mirror\-chroot\-security is used here unless specified different.
+configuered in the final image. By default,
+\&'http://cdn.debian.net/debian\-security/' is used.
.IP "\fB\-\-mirror\-chroot\fP \fIURL\fP" 4
sets the location of the debian package mirror that will be used to fetch
the packages in order to build the live system. By default, this points to
-http://ftp.us.debian.org/debian/ which may not be a good default if you live
+http://ftp.de.debian.org/debian/ which may not be a good default if you live
outside the U.S.
.IP "\fB\-\-mirror\-chroot\-security\fP \fIURL\fP" 4
sets the location of the debian security package mirror that will be used to
diff --git a/manpages/de/lh_local.de.1 b/manpages/de/lh_local.de.1
index 0d80b01..ffc346c 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "Debian Live Projekt"
.SH NAME
\fBlh local\fP \- Wrapper fuer lokale live\-helper Programme
diff --git a/manpages/de/lh_source.de.1 b/manpages/de/lh_source.de.1
index 50f21ee..c3dfaf0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 8d9d494..a1a160e 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 e47830c..d0530b4 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 dc0b518..caa69e7 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 1672a1f..f67678b 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 1f6994c..9c04b71 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 81cd06a..cf3bb63 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 7c71c21..059a2c3 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 185ab0a..4f836d0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 2e8e96f..d732706 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 b0d93cf..4e30dfc 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 23.05.2010 2.0~a13 "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 bf48dd3..cbbf9d0 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 12.05.2010 2.0~a12 "Debian Live Projekt"
+.TH LIVE\-HELPER 7 23.05.2010 2.0~a13 "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 96174c7..57887bf 100644
--- a/manpages/en/lh.1
+++ b/manpages/en/lh.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 bfcb162..ce44e72 100644
--- a/manpages/en/lh_binary.1
+++ b/manpages/en/lh_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 939c60c..0e1f637 100644
--- a/manpages/en/lh_binary_checksums.1
+++ b/manpages/en/lh_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 4862575..c359fd4 100644
--- a/manpages/en/lh_binary_chroot.1
+++ b/manpages/en/lh_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 73d64f4..a0a037b 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 bd0b1a0..291a176 100644
--- a/manpages/en/lh_binary_disk.1
+++ b/manpages/en/lh_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 6f13c7c..b03cf4f 100644
--- a/manpages/en/lh_binary_encryption.1
+++ b/manpages/en/lh_binary_encryption.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 d694dab..43c7191 100644
--- a/manpages/en/lh_binary_grub.1
+++ b/manpages/en/lh_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 78aa019..1af278f 100644
--- a/manpages/en/lh_binary_grub2.1
+++ b/manpages/en/lh_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 4c5c86d..6f3d759 100644
--- a/manpages/en/lh_binary_includes.1
+++ b/manpages/en/lh_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 e66acdb..2fad418 100644
--- a/manpages/en/lh_binary_iso.1
+++ b/manpages/en/lh_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 25d76a8..ea7e81b 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 ec69388..2b5265b 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 86c9fc9..269442e 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 59c0f37..0021c9f 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 bcdde3e..b8d2a3e 100644
--- a/manpages/en/lh_binary_manifest.1
+++ b/manpages/en/lh_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 0a38e36..4f3f8c1 100644
--- a/manpages/en/lh_binary_memtest.1
+++ b/manpages/en/lh_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 548c368..dac89bd 100644
--- a/manpages/en/lh_binary_net.1
+++ b/manpages/en/lh_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 16f4b53..7d345db 100644
--- a/manpages/en/lh_binary_rootfs.1
+++ b/manpages/en/lh_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 6f45a65..3aa26bd 100644
--- a/manpages/en/lh_binary_silo.1
+++ b/manpages/en/lh_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 38c096f..db74037 100644
--- a/manpages/en/lh_binary_syslinux.1
+++ b/manpages/en/lh_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 3f4e455..077d3b2 100644
--- a/manpages/en/lh_binary_tar.1
+++ b/manpages/en/lh_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 0fef532..1151be6 100644
--- a/manpages/en/lh_binary_usb.1
+++ b/manpages/en/lh_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 d91afc7..6d4420b 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 f7084f2..562cc59 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 9cb0f43..6652e8f 100644
--- a/manpages/en/lh_binary_yaboot.1
+++ b/manpages/en/lh_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 b48f82d..2560d0e 100644
--- a/manpages/en/lh_bootstrap.1
+++ b/manpages/en/lh_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 7db6268..cbfd361 100644
--- a/manpages/en/lh_bootstrap_cache.1
+++ b/manpages/en/lh_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 a80e021..91f5ebf 100644
--- a/manpages/en/lh_bootstrap_cdebootstrap.1
+++ b/manpages/en/lh_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 b8dd354..b32306e 100644
--- a/manpages/en/lh_bootstrap_copy.1
+++ b/manpages/en/lh_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 26bc281..3b14c89 100644
--- a/manpages/en/lh_bootstrap_debootstrap.1
+++ b/manpages/en/lh_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 51c22f2..16cf08d 100644
--- a/manpages/en/lh_build.1
+++ b/manpages/en/lh_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 fa338b2..44fafd2 100644
--- a/manpages/en/lh_chroot.1
+++ b/manpages/en/lh_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 ecd6b3b..d447ed3 100644
--- a/manpages/en/lh_chroot_apt.1
+++ b/manpages/en/lh_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 e38b343..e6b6afe 100644
--- a/manpages/en/lh_chroot_cache.1
+++ b/manpages/en/lh_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 fa34476..f4edc38 100644
--- a/manpages/en/lh_chroot_debianchroot.1
+++ b/manpages/en/lh_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 d2a22fd..13a2be4 100644
--- a/manpages/en/lh_chroot_devpts.1
+++ b/manpages/en/lh_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 8b29ebe..802effd 100644
--- a/manpages/en/lh_chroot_dpkg.1
+++ b/manpages/en/lh_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 73e03e7..0c4f1c7 100644
--- a/manpages/en/lh_chroot_hacks.1
+++ b/manpages/en/lh_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 b8ecc18..0cc65c1 100644
--- a/manpages/en/lh_chroot_hooks.1
+++ b/manpages/en/lh_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 6fc9a7a..1d3decc 100644
--- a/manpages/en/lh_chroot_hostname.1
+++ b/manpages/en/lh_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 3aedc9c..34a22c1 100644
--- a/manpages/en/lh_chroot_hosts.1
+++ b/manpages/en/lh_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 273d817..d33f1c3 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 9767e6f..6848912 100644
--- a/manpages/en/lh_chroot_interactive.1
+++ b/manpages/en/lh_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 09764d9..c68ad53 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 96d8bda..7b64008 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 c79b95b..89c9db5 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 e4fc9e7..5ce2445 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 2e0e4cd..c331fb1 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 e247343..7515115 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 0080f89..ec3d3e1 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 a284a40..eb3a425 100644
--- a/manpages/en/lh_chroot_localization.1
+++ b/manpages/en/lh_chroot_localization.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 89fc882..a949fcd 100644
--- a/manpages/en/lh_chroot_packages.1
+++ b/manpages/en/lh_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 06c94c8..bdd16b5 100644
--- a/manpages/en/lh_chroot_packageslists.1
+++ b/manpages/en/lh_chroot_packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 621383a..c2a2123 100644
--- a/manpages/en/lh_chroot_preseed.1
+++ b/manpages/en/lh_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 87ff3ee..ccb4060 100644
--- a/manpages/en/lh_chroot_proc.1
+++ b/manpages/en/lh_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 1fe622a..cc09d8b 100644
--- a/manpages/en/lh_chroot_resolv.1
+++ b/manpages/en/lh_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 c7e30ef..f4b5f22 100644
--- a/manpages/en/lh_chroot_selinuxfs.1
+++ b/manpages/en/lh_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 5c41e37..a7c282d 100644
--- a/manpages/en/lh_chroot_sources.1
+++ b/manpages/en/lh_chroot_sources.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 bade166..b0ba015 100644
--- a/manpages/en/lh_chroot_symlinks.1
+++ b/manpages/en/lh_chroot_symlinks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 2f29eba..181febd 100644
--- a/manpages/en/lh_chroot_sysfs.1
+++ b/manpages/en/lh_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 b901220..a2ae978 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 cf3380e..aac65da 100644
--- a/manpages/en/lh_chroot_sysvinit.1
+++ b/manpages/en/lh_chroot_sysvinit.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 baba2b0..efc4f40 100644
--- a/manpages/en/lh_chroot_tasks.1
+++ b/manpages/en/lh_chroot_tasks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 a3e71b3..a3a3954 100644
--- a/manpages/en/lh_chroot_upstart.1
+++ b/manpages/en/lh_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 cf20636..88834d3 100644
--- a/manpages/en/lh_clean.1
+++ b/manpages/en/lh_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 95024f6..d3de8d9 100644
--- a/manpages/en/lh_config.1
+++ b/manpages/en/lh_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "Debian Live Project"
.SH NAME
\fBlh config\fR \- Create config directory
@@ -59,7 +59,7 @@
.br
[\fB\-\-checksums\fR md5|sha1|sha256|none]
.br
- [\fB\-\-chroot\-build\fR true|false]
+ [\fB\-\-build\-with\-chroot\fR true|false]
.br
[\fB\-\-chroot\-filesystem\fR ext2|ext3|squashfs|plain|jffs2]
.br
@@ -267,7 +267,7 @@ defines if downloaded packages files should be cached which is true by default.
sets which stages should be cached. By default set to bootstrap. As an exception to the normal stage names, also rootfs can be used here which does only cache the generated root filesystem in filesystem.{dir,ext*,squashfs}. This is useful during development if you want to rebuild the binary stage but not regenerate the root filesystem all the time.
.IP "\fB\-\-checksums\fR md5|sha1|sha256|none" 4
defines if the binary image should contain a file called md5sums.txt, sha1sums.txt and/or sha256sums.txt. These lists all files on the image together with their checksums. This in turn can be used by live\-initramfs' built\-in integrity\-check to verify the medium if specified at boot prompt. In general, this should not be false and is an important feature of live system released to the public. However, during development of very big images it can save some time by not calculating the checksums.
-.IP "\fB\-\-chroot\-build\fR true|false" 4
+.IP "\fB\-\-build\-with\-chroot\fR true|false" 4
defines whetever live\-helper should use the tools from within the chroot to build the binary image or not by using and including the host systems tools. This is a very dangerous option, using the tools of the host system can lead to tainted and even non-bootable images if the host systems version of the required tools (mainly these are the bootloaders such as syslinux, grub and yaboot, and the auxilliary tools such as dosfstools, genisoimage, squashfs-tools and others) do not \fBexactely\fR match what is present at build-time in the target distribution. Never do disable this option unless you are \fBexactely\fR sure what you are doing and have \fBcompletely\fI understood its consequences.
.IP "\fB\-\-chroot\-filesystem\fR ext2|ext3|squashfs|plain|jffs2" 4
defines which filesystem type should be used for the root filesystem image. If you use plain, then no filesystem image is created and the root filesystem content is copied on the binary image filesystem as flat files. Depending on what binary filesystem you have choosen, it may not be possible to build with a plain root filesystem, e.g. fat16/fat32 and plain don't work as linux does not support to run on them.
@@ -338,11 +338,11 @@ defines if memtest, memtest86+ or no memory tester at all should be included as
.IP "\-m|\fB\-\-mirror\-bootstrap\fR \fIURL\fR" 4
sets the location of the debian package mirror that should be used to bootstrap from.
.IP "\fB\-\-mirror\-binary\fR \fIURL\fR" 4
-sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, the same value that is used for \-\-mirror\-chroot is used here unless specified different.
+sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, 'http://cdn.debian.net/debian/' is used.
.IP "\fB\-\-mirror\-binary\-security\fR \fIURL\fR" 4
-sets the location of the debian security package mirror that should end up configuered in the final image. By default, the same value that is used for \-\-mirror\-chroot\-security is used here unless specified different.
+sets the location of the debian security package mirror that should end up configuered in the final image. By default, 'http://cdn.debian.net/debian-security/' is used.
.IP "\fB\-\-mirror\-chroot\fR \fIURL\fR" 4
-sets the location of the debian package mirror that will be used to fetch the packages in order to build the live system. By default, this points to http://ftp.us.debian.org/debian/ which may not be a good default if you live outside the U.S.
+sets the location of the debian package mirror that will be used to fetch the packages in order to build the live system. By default, this points to http://ftp.de.debian.org/debian/ which may not be a good default if you live outside the U.S.
.IP "\fB\-\-mirror\-chroot\-security\fR \fIURL\fR" 4
sets the location of the debian security package mirror that will be used to fetch the packages in order to build the live system. By default, this points to http://security.debian.org/debian/.
.IP "\fB\-\-mirror\-debian\-installer\fR \fIURL\fR" 4
diff --git a/manpages/en/lh_local.1 b/manpages/en/lh_local.1
index 1f9c8a3..470747d 100644
--- a/manpages/en/lh_local.1
+++ b/manpages/en/lh_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 06a1282..9e193e4 100644
--- a/manpages/en/lh_source.1
+++ b/manpages/en/lh_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 57c3f0d..6044ea7 100644
--- a/manpages/en/lh_source_checksums.1
+++ b/manpages/en/lh_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 52933b6..fc0b4e4 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 9d2812d..0b68529 100644
--- a/manpages/en/lh_source_debian.1
+++ b/manpages/en/lh_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 16cce44..dd888e2 100644
--- a/manpages/en/lh_source_disk.1
+++ b/manpages/en/lh_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 8d21a24..5b203ca 100644
--- a/manpages/en/lh_source_iso.1
+++ b/manpages/en/lh_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 888fbd8..e2d7ac0 100644
--- a/manpages/en/lh_source_net.1
+++ b/manpages/en/lh_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 2fb1fa4..2dd16f3 100644
--- a/manpages/en/lh_source_tar.1
+++ b/manpages/en/lh_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 9541ff6..fa3099a 100644
--- a/manpages/en/lh_source_usb.1
+++ b/manpages/en/lh_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 2b25e1b..346796a 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\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 0938921..c349fa6 100644
--- a/manpages/en/lh_testroot.1
+++ b/manpages/en/lh_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-05\-23 2.0~a13 "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 7e6e153..581f10a 100644
--- a/manpages/en/live-helper.7
+++ b/manpages/en/live-helper.7
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 7 2010\-05\-12 2.0~a12 "Debian Live Project"
+.TH LIVE\-HELPER 7 2010\-05\-23 2.0~a13 "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 ff3d622..3e4fe57 100644
--- a/manpages/po/de/lh.1.po
+++ b/manpages/po/de/lh.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary.1.po b/manpages/po/de/lh_binary.1.po
index 5b844fd..e1cd2e4 100644
--- a/manpages/po/de/lh_binary.1.po
+++ b/manpages/po/de/lh_binary.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_checksums.1.po b/manpages/po/de/lh_binary_checksums.1.po
index 3ae3b1b..6376bf1 100644
--- a/manpages/po/de/lh_binary_checksums.1.po
+++ b/manpages/po/de/lh_binary_checksums.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_chroot.1.po b/manpages/po/de/lh_binary_chroot.1.po
index 1269e9e..2429597 100644
--- a/manpages/po/de/lh_binary_chroot.1.po
+++ b/manpages/po/de/lh_binary_chroot.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 ec7b0df..e1b0938 100644
--- a/manpages/po/de/lh_binary_debian-installer.1.po
+++ b/manpages/po/de/lh_binary_debian-installer.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_disk.1.po b/manpages/po/de/lh_binary_disk.1.po
index ac96d78..5bc3178 100644
--- a/manpages/po/de/lh_binary_disk.1.po
+++ b/manpages/po/de/lh_binary_disk.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_encryption.1.po b/manpages/po/de/lh_binary_encryption.1.po
index 1888eb7..6bba59d 100644
--- a/manpages/po/de/lh_binary_encryption.1.po
+++ b/manpages/po/de/lh_binary_encryption.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_grub.1.po b/manpages/po/de/lh_binary_grub.1.po
index bcb0b00..7792285 100644
--- a/manpages/po/de/lh_binary_grub.1.po
+++ b/manpages/po/de/lh_binary_grub.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_grub2.1.po b/manpages/po/de/lh_binary_grub2.1.po
index 73896a6..33097c2 100644
--- a/manpages/po/de/lh_binary_grub2.1.po
+++ b/manpages/po/de/lh_binary_grub2.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_includes.1.po b/manpages/po/de/lh_binary_includes.1.po
index d7c5510..f5b613a 100644
--- a/manpages/po/de/lh_binary_includes.1.po
+++ b/manpages/po/de/lh_binary_includes.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_iso.1.po b/manpages/po/de/lh_binary_iso.1.po
index 74d7dcd..e227452 100644
--- a/manpages/po/de/lh_binary_iso.1.po
+++ b/manpages/po/de/lh_binary_iso.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 9330adb..0e937ab 100644
--- a/manpages/po/de/lh_binary_linux-image.1.po
+++ b/manpages/po/de/lh_binary_linux-image.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 9d02c5c..463e1d6 100644
--- a/manpages/po/de/lh_binary_local-hooks.1.po
+++ b/manpages/po/de/lh_binary_local-hooks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 2a183e9..a4b86cd 100644
--- a/manpages/po/de/lh_binary_local-includes.1.po
+++ b/manpages/po/de/lh_binary_local-includes.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 21f5924..eb40f74 100644
--- a/manpages/po/de/lh_binary_local-packageslists.1.po
+++ b/manpages/po/de/lh_binary_local-packageslists.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_manifest.1.po b/manpages/po/de/lh_binary_manifest.1.po
index a2350c6..b40360e 100644
--- a/manpages/po/de/lh_binary_manifest.1.po
+++ b/manpages/po/de/lh_binary_manifest.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_memtest.1.po b/manpages/po/de/lh_binary_memtest.1.po
index 1d1e5b4..c81897b 100644
--- a/manpages/po/de/lh_binary_memtest.1.po
+++ b/manpages/po/de/lh_binary_memtest.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_net.1.po b/manpages/po/de/lh_binary_net.1.po
index e9118ef..3344c97 100644
--- a/manpages/po/de/lh_binary_net.1.po
+++ b/manpages/po/de/lh_binary_net.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_rootfs.1.po b/manpages/po/de/lh_binary_rootfs.1.po
index ab0967d..d0f9df3 100644
--- a/manpages/po/de/lh_binary_rootfs.1.po
+++ b/manpages/po/de/lh_binary_rootfs.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_silo.1.po b/manpages/po/de/lh_binary_silo.1.po
index d363e8d..2709785 100644
--- a/manpages/po/de/lh_binary_silo.1.po
+++ b/manpages/po/de/lh_binary_silo.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_syslinux.1.po b/manpages/po/de/lh_binary_syslinux.1.po
index 3ad6502..2ea6cc7 100644
--- a/manpages/po/de/lh_binary_syslinux.1.po
+++ b/manpages/po/de/lh_binary_syslinux.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_tar.1.po b/manpages/po/de/lh_binary_tar.1.po
index af5ee9b..ff932ba 100644
--- a/manpages/po/de/lh_binary_tar.1.po
+++ b/manpages/po/de/lh_binary_tar.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_usb.1.po b/manpages/po/de/lh_binary_usb.1.po
index ad055ad..06e878c 100644
--- a/manpages/po/de/lh_binary_usb.1.po
+++ b/manpages/po/de/lh_binary_usb.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 be9cf57..9f49d69 100644
--- a/manpages/po/de/lh_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lh_binary_virtual-hdd.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 47000dd..942b494 100644
--- a/manpages/po/de/lh_binary_win32-loader.1.po
+++ b/manpages/po/de/lh_binary_win32-loader.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_binary_yaboot.1.po b/manpages/po/de/lh_binary_yaboot.1.po
index b17ad58..4502f46 100644
--- a/manpages/po/de/lh_binary_yaboot.1.po
+++ b/manpages/po/de/lh_binary_yaboot.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_bootstrap.1.po b/manpages/po/de/lh_bootstrap.1.po
index f91b153..ed4ce84 100644
--- a/manpages/po/de/lh_bootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_bootstrap_cache.1.po b/manpages/po/de/lh_bootstrap_cache.1.po
index 7f85bdc..dd9fc55 100644
--- a/manpages/po/de/lh_bootstrap_cache.1.po
+++ b/manpages/po/de/lh_bootstrap_cache.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
index 74060da..59e5189 100644
--- a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_bootstrap_copy.1.po b/manpages/po/de/lh_bootstrap_copy.1.po
index 05f4b42..2a9843f 100644
--- a/manpages/po/de/lh_bootstrap_copy.1.po
+++ b/manpages/po/de/lh_bootstrap_copy.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_bootstrap_debootstrap.1.po b/manpages/po/de/lh_bootstrap_debootstrap.1.po
index 5d17c26..ffa0833 100644
--- a/manpages/po/de/lh_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_debootstrap.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_build.1.po b/manpages/po/de/lh_build.1.po
index d9c7eae..91a1ebc 100644
--- a/manpages/po/de/lh_build.1.po
+++ b/manpages/po/de/lh_build.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 10:39+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot.1.po b/manpages/po/de/lh_chroot.1.po
index 4dd708d..e8dd762 100644
--- a/manpages/po/de/lh_chroot.1.po
+++ b/manpages/po/de/lh_chroot.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_apt.1.po b/manpages/po/de/lh_chroot_apt.1.po
index 898b40a..7292f30 100644
--- a/manpages/po/de/lh_chroot_apt.1.po
+++ b/manpages/po/de/lh_chroot_apt.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_cache.1.po b/manpages/po/de/lh_chroot_cache.1.po
index 8557184..8b2d008 100644
--- a/manpages/po/de/lh_chroot_cache.1.po
+++ b/manpages/po/de/lh_chroot_cache.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_debianchroot.1.po b/manpages/po/de/lh_chroot_debianchroot.1.po
index 6a249b0..2522ccf 100644
--- a/manpages/po/de/lh_chroot_debianchroot.1.po
+++ b/manpages/po/de/lh_chroot_debianchroot.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_devpts.1.po b/manpages/po/de/lh_chroot_devpts.1.po
index 0ce63b4..3230113 100644
--- a/manpages/po/de/lh_chroot_devpts.1.po
+++ b/manpages/po/de/lh_chroot_devpts.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_dpkg.1.po b/manpages/po/de/lh_chroot_dpkg.1.po
index f4fd8c5..984e381 100644
--- a/manpages/po/de/lh_chroot_dpkg.1.po
+++ b/manpages/po/de/lh_chroot_dpkg.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_hacks.1.po b/manpages/po/de/lh_chroot_hacks.1.po
index fbc9e11..0698f88 100644
--- a/manpages/po/de/lh_chroot_hacks.1.po
+++ b/manpages/po/de/lh_chroot_hacks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_hooks.1.po b/manpages/po/de/lh_chroot_hooks.1.po
index a4e7b00..7260cf1 100644
--- a/manpages/po/de/lh_chroot_hooks.1.po
+++ b/manpages/po/de/lh_chroot_hooks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_hostname.1.po b/manpages/po/de/lh_chroot_hostname.1.po
index 86dd419..ef72784 100644
--- a/manpages/po/de/lh_chroot_hostname.1.po
+++ b/manpages/po/de/lh_chroot_hostname.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_hosts.1.po b/manpages/po/de/lh_chroot_hosts.1.po
index f2956df..9d6ebc0 100644
--- a/manpages/po/de/lh_chroot_hosts.1.po
+++ b/manpages/po/de/lh_chroot_hosts.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 67b1a95..19e0aed 100644
--- a/manpages/po/de/lh_chroot_install-packages.1.po
+++ b/manpages/po/de/lh_chroot_install-packages.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_interactive.1.po b/manpages/po/de/lh_chroot_interactive.1.po
index e711f57..734be18 100644
--- a/manpages/po/de/lh_chroot_interactive.1.po
+++ b/manpages/po/de/lh_chroot_interactive.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 4b428f3..30fdba5 100644
--- a/manpages/po/de/lh_chroot_linux-image.1.po
+++ b/manpages/po/de/lh_chroot_linux-image.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 94c087d..9adea77 100644
--- a/manpages/po/de/lh_chroot_local-hooks.1.po
+++ b/manpages/po/de/lh_chroot_local-hooks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 1422f0c..a62dab8 100644
--- a/manpages/po/de/lh_chroot_local-includes.1.po
+++ b/manpages/po/de/lh_chroot_local-includes.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 e5d78cf..8ff7ba5 100644
--- a/manpages/po/de/lh_chroot_local-packages.1.po
+++ b/manpages/po/de/lh_chroot_local-packages.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 f3f5dae..0dec6b9 100644
--- a/manpages/po/de/lh_chroot_local-packageslists.1.po
+++ b/manpages/po/de/lh_chroot_local-packageslists.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 77adc0c..bbeea0e 100644
--- a/manpages/po/de/lh_chroot_local-patches.1.po
+++ b/manpages/po/de/lh_chroot_local-patches.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 a1e81fe..83aa0a4 100644
--- a/manpages/po/de/lh_chroot_local-preseed.1.po
+++ b/manpages/po/de/lh_chroot_local-preseed.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_localization.1.po b/manpages/po/de/lh_chroot_localization.1.po
index f81bbe5..6590c5c 100644
--- a/manpages/po/de/lh_chroot_localization.1.po
+++ b/manpages/po/de/lh_chroot_localization.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_packages.1.po b/manpages/po/de/lh_chroot_packages.1.po
index 9f04fab..1d51b88 100644
--- a/manpages/po/de/lh_chroot_packages.1.po
+++ b/manpages/po/de/lh_chroot_packages.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_packageslists.1.po b/manpages/po/de/lh_chroot_packageslists.1.po
index 4147c60..7fa2924 100644
--- a/manpages/po/de/lh_chroot_packageslists.1.po
+++ b/manpages/po/de/lh_chroot_packageslists.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_preseed.1.po b/manpages/po/de/lh_chroot_preseed.1.po
index e2dbff1..5d1ce81 100644
--- a/manpages/po/de/lh_chroot_preseed.1.po
+++ b/manpages/po/de/lh_chroot_preseed.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_proc.1.po b/manpages/po/de/lh_chroot_proc.1.po
index 2f2c8f2..ac37371 100644
--- a/manpages/po/de/lh_chroot_proc.1.po
+++ b/manpages/po/de/lh_chroot_proc.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_resolv.1.po b/manpages/po/de/lh_chroot_resolv.1.po
index 7f7875d..7ecd46a 100644
--- a/manpages/po/de/lh_chroot_resolv.1.po
+++ b/manpages/po/de/lh_chroot_resolv.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_selinuxfs.1.po b/manpages/po/de/lh_chroot_selinuxfs.1.po
index 9194de4..9e80339 100644
--- a/manpages/po/de/lh_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lh_chroot_selinuxfs.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_sources.1.po b/manpages/po/de/lh_chroot_sources.1.po
index b345e1a..eaaf752 100644
--- a/manpages/po/de/lh_chroot_sources.1.po
+++ b/manpages/po/de/lh_chroot_sources.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_symlinks.1.po b/manpages/po/de/lh_chroot_symlinks.1.po
index 2246d4c..96dfb8b 100644
--- a/manpages/po/de/lh_chroot_symlinks.1.po
+++ b/manpages/po/de/lh_chroot_symlinks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_sysfs.1.po b/manpages/po/de/lh_chroot_sysfs.1.po
index 9c7ff59..ef87dcb 100644
--- a/manpages/po/de/lh_chroot_sysfs.1.po
+++ b/manpages/po/de/lh_chroot_sysfs.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 228d751..06b6ee3 100644
--- a/manpages/po/de/lh_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lh_chroot_sysv-rc.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_sysvinit.1.po b/manpages/po/de/lh_chroot_sysvinit.1.po
index 5d85cb0..0392b2d 100644
--- a/manpages/po/de/lh_chroot_sysvinit.1.po
+++ b/manpages/po/de/lh_chroot_sysvinit.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_tasks.1.po b/manpages/po/de/lh_chroot_tasks.1.po
index 5907c4a..922e7dd 100644
--- a/manpages/po/de/lh_chroot_tasks.1.po
+++ b/manpages/po/de/lh_chroot_tasks.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_chroot_upstart.1.po b/manpages/po/de/lh_chroot_upstart.1.po
index 6b0c8d5..b2ee059 100644
--- a/manpages/po/de/lh_chroot_upstart.1.po
+++ b/manpages/po/de/lh_chroot_upstart.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_clean.1.po b/manpages/po/de/lh_clean.1.po
index 5fe15c4..0a7d7f4 100644
--- a/manpages/po/de/lh_clean.1.po
+++ b/manpages/po/de/lh_clean.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_config.1.po b/manpages/po/de/lh_config.1.po
index 6ed0248..be78897 100644
--- a/manpages/po/de/lh_config.1.po
+++ b/manpages/po/de/lh_config.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
@@ -836,7 +837,7 @@ msgstr ""
#. type: Plain text
#: en/lh_config.1:63
-msgid " [B<--chroot-build> true|false]"
+msgid " [B<--build-with-chroot> true|false]"
msgstr ""
#. type: Plain text
@@ -1610,7 +1611,7 @@ msgstr ""
#. type: IP
#: en/lh_config.1:270
#, no-wrap
-msgid "B<--chroot-build> true|false"
+msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
@@ -2135,8 +2136,7 @@ msgid ""
"in the final image and which is the one a user would see and use. This has "
"not necessarily to be the same that is used to build the image, e.g. if you "
"use a local mirror but want to have an official mirror in the image. By "
-"default, the same value that is used for --mirror-chroot is used here unless "
-"specified different."
+"default, 'http://cdn.debian.net/debian/' is used."
msgstr ""
#. type: IP
@@ -2149,8 +2149,8 @@ msgstr ""
#: en/lh_config.1:344
msgid ""
"sets the location of the debian security package mirror that should end up "
-"configuered in the final image. By default, the same value that is used for "
-"--mirror-chroot-security is used here unless specified different."
+"configuered in the final image. By default, 'http://cdn.debian.net/debian-"
+"security/' is used."
msgstr ""
#. type: IP
@@ -2164,7 +2164,7 @@ msgstr ""
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages in order to build the live system. By default, this points to "
-"http://ftp.us.debian.org/debian/ which may not be a good default if you live "
+"http://ftp.de.debian.org/debian/ which may not be a good default if you live "
"outside the U.S."
msgstr ""
diff --git a/manpages/po/de/lh_local.1.po b/manpages/po/de/lh_local.1.po
index c83fb3e..716c9c9 100644
--- a/manpages/po/de/lh_local.1.po
+++ b/manpages/po/de/lh_local.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 12:13+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source.1.po b/manpages/po/de/lh_source.1.po
index 45f8b22..1b8ae5c 100644
--- a/manpages/po/de/lh_source.1.po
+++ b/manpages/po/de/lh_source.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_checksums.1.po b/manpages/po/de/lh_source_checksums.1.po
index 85ebcd4..8171db7 100644
--- a/manpages/po/de/lh_source_checksums.1.po
+++ b/manpages/po/de/lh_source_checksums.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 c8e1ba0..040b76b 100644
--- a/manpages/po/de/lh_source_debian-live.1.po
+++ b/manpages/po/de/lh_source_debian-live.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_debian.1.po b/manpages/po/de/lh_source_debian.1.po
index 88345d6..111e6b2 100644
--- a/manpages/po/de/lh_source_debian.1.po
+++ b/manpages/po/de/lh_source_debian.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_disk.1.po b/manpages/po/de/lh_source_disk.1.po
index 232d600..c205dd2 100644
--- a/manpages/po/de/lh_source_disk.1.po
+++ b/manpages/po/de/lh_source_disk.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_iso.1.po b/manpages/po/de/lh_source_iso.1.po
index 461f51d..a37f373 100644
--- a/manpages/po/de/lh_source_iso.1.po
+++ b/manpages/po/de/lh_source_iso.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_net.1.po b/manpages/po/de/lh_source_net.1.po
index c03b2e0..d2ebc27 100644
--- a/manpages/po/de/lh_source_net.1.po
+++ b/manpages/po/de/lh_source_net.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_tar.1.po b/manpages/po/de/lh_source_tar.1.po
index d8298f6..c1c6a02 100644
--- a/manpages/po/de/lh_source_tar.1.po
+++ b/manpages/po/de/lh_source_tar.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_source_usb.1.po b/manpages/po/de/lh_source_usb.1.po
index e54d08f..a9e1e4a 100644
--- a/manpages/po/de/lh_source_usb.1.po
+++ b/manpages/po/de/lh_source_usb.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. 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 8c49187..89bd176 100644
--- a/manpages/po/de/lh_source_virtual-hdd.1.po
+++ b/manpages/po/de/lh_source_virtual-hdd.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/lh_testroot.1.po b/manpages/po/de/lh_testroot.1.po
index 14f7d4c..9a354b0 100644
--- a/manpages/po/de/lh_testroot.1.po
+++ b/manpages/po/de/lh_testroot.1.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/po/de/live-helper.7.po b/manpages/po/de/live-helper.7.po
index b7c762f..28e6cc1 100644
--- a/manpages/po/de/live-helper.7.po
+++ b/manpages/po/de/live-helper.7.po
@@ -1,15 +1,15 @@
-# German translations for PACKAGE package
-# Copyright (C) 2010 Free Software Foundation, Inc.
+# German translations for live-helper package
+# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
# This file is distributed under the same license as the live-helper package.
-# Automatically generated, 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-05-12 05:55+0300\n"
+"Project-Id-Version: live-helper 2.0~a12\n"
+"POT-Creation-Date: 2010-05-23 12:35+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
-"Last-Translator: Automatically generated\n"
+"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\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-05-12"
-msgstr "12.05.2010"
+msgid "2010-05-23"
+msgstr "23.05.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -116,8 +116,9 @@ msgstr "12.05.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~a12"
+#, fuzzy, no-wrap
+#| msgid "2.0~a12"
+msgid "2.0~a13"
msgstr "2.0~a12"
#. type: TH
diff --git a/manpages/pot/lh.1.pot b/manpages/pot/lh.1.pot
index 953d95c..99e5caf 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary.1.pot b/manpages/pot/lh_binary.1.pot
index a1f91d3..56691b6 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_checksums.1.pot b/manpages/pot/lh_binary_checksums.1.pot
index 4aaf50c..79394c9 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_chroot.1.pot b/manpages/pot/lh_binary_chroot.1.pot
index 135a196..da988a3 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_debian-installer.1.pot b/manpages/pot/lh_binary_debian-installer.1.pot
index 91aa07b..dab48c8 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_disk.1.pot b/manpages/pot/lh_binary_disk.1.pot
index dc5905f..76e1896 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_encryption.1.pot b/manpages/pot/lh_binary_encryption.1.pot
index 0818fb0..0867ddf 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_grub.1.pot b/manpages/pot/lh_binary_grub.1.pot
index 1ae5349..7d48f5e 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_grub2.1.pot b/manpages/pot/lh_binary_grub2.1.pot
index 5f51de8..61a8f07 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_includes.1.pot b/manpages/pot/lh_binary_includes.1.pot
index dca4b5d..e5b0f36 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_iso.1.pot b/manpages/pot/lh_binary_iso.1.pot
index b0cc262..e397169 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_linux-image.1.pot b/manpages/pot/lh_binary_linux-image.1.pot
index a11a6ce..400d851 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-hooks.1.pot b/manpages/pot/lh_binary_local-hooks.1.pot
index 757aadf..221b3f7 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-includes.1.pot b/manpages/pot/lh_binary_local-includes.1.pot
index 0c99ebb..4eac160 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-packageslists.1.pot b/manpages/pot/lh_binary_local-packageslists.1.pot
index ec9e118..6fe4089 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_manifest.1.pot b/manpages/pot/lh_binary_manifest.1.pot
index 8327bca..f93851c 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_memtest.1.pot b/manpages/pot/lh_binary_memtest.1.pot
index 5d02401..271af46 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_net.1.pot b/manpages/pot/lh_binary_net.1.pot
index eedc439..947f9ea 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_rootfs.1.pot b/manpages/pot/lh_binary_rootfs.1.pot
index 3db431c..c4d4008 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_silo.1.pot b/manpages/pot/lh_binary_silo.1.pot
index 4e05828..6b1b578 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_syslinux.1.pot b/manpages/pot/lh_binary_syslinux.1.pot
index 28e0f92..86353ef 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_tar.1.pot b/manpages/pot/lh_binary_tar.1.pot
index 7f81e01..8299d32 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_usb.1.pot b/manpages/pot/lh_binary_usb.1.pot
index b04ad91..4385b6b 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_virtual-hdd.1.pot b/manpages/pot/lh_binary_virtual-hdd.1.pot
index 5dbbc47..73352b4 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_win32-loader.1.pot b/manpages/pot/lh_binary_win32-loader.1.pot
index 04ad99d..c008463 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_yaboot.1.pot b/manpages/pot/lh_binary_yaboot.1.pot
index 45ffee2..bc6a998 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap.1.pot b/manpages/pot/lh_bootstrap.1.pot
index d8a9720..be4ef71 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_cache.1.pot b/manpages/pot/lh_bootstrap_cache.1.pot
index e0932a0..dab54e1 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
index 5867e01..9a32755 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_copy.1.pot b/manpages/pot/lh_bootstrap_copy.1.pot
index 60aebc3..ff25c94 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_debootstrap.1.pot b/manpages/pot/lh_bootstrap_debootstrap.1.pot
index 01fc90d..ed89fd5 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_build.1.pot b/manpages/pot/lh_build.1.pot
index f800392..e2a6378 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot.1.pot b/manpages/pot/lh_chroot.1.pot
index 622ecb8..fd767b9 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_apt.1.pot b/manpages/pot/lh_chroot_apt.1.pot
index 26f1767..9729fdb 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_cache.1.pot b/manpages/pot/lh_chroot_cache.1.pot
index bf3d853..c5c6098 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_debianchroot.1.pot b/manpages/pot/lh_chroot_debianchroot.1.pot
index 8f9f6b2..88d25c6 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_devpts.1.pot b/manpages/pot/lh_chroot_devpts.1.pot
index 7dfac7e..2d2ea19 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_dpkg.1.pot b/manpages/pot/lh_chroot_dpkg.1.pot
index 4603ea3..92e444d 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hacks.1.pot b/manpages/pot/lh_chroot_hacks.1.pot
index 712ef88..14d397f 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hooks.1.pot b/manpages/pot/lh_chroot_hooks.1.pot
index 8ab761a..e2c22f9 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hostname.1.pot b/manpages/pot/lh_chroot_hostname.1.pot
index d907ec8..f4e2ebb 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hosts.1.pot b/manpages/pot/lh_chroot_hosts.1.pot
index 5d9f2d6..7299fba 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_install-packages.1.pot b/manpages/pot/lh_chroot_install-packages.1.pot
index 73a6686..b56331f 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_interactive.1.pot b/manpages/pot/lh_chroot_interactive.1.pot
index bb34b06..67f7fac 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_linux-image.1.pot b/manpages/pot/lh_chroot_linux-image.1.pot
index e88e686..d98652a 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-hooks.1.pot b/manpages/pot/lh_chroot_local-hooks.1.pot
index 4558fbe..621d15c 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-includes.1.pot b/manpages/pot/lh_chroot_local-includes.1.pot
index 58224b2..b19698b 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-packages.1.pot b/manpages/pot/lh_chroot_local-packages.1.pot
index 810711b..250392d 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-packageslists.1.pot b/manpages/pot/lh_chroot_local-packageslists.1.pot
index cb244bd..183f2bd 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-patches.1.pot b/manpages/pot/lh_chroot_local-patches.1.pot
index 813c8d7..ef89dfd 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-preseed.1.pot b/manpages/pot/lh_chroot_local-preseed.1.pot
index def2fee..682befc 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_localization.1.pot b/manpages/pot/lh_chroot_localization.1.pot
index 4b5821b..0961d66 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_packages.1.pot b/manpages/pot/lh_chroot_packages.1.pot
index 0b7f31b..cc1a8f6 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_packageslists.1.pot b/manpages/pot/lh_chroot_packageslists.1.pot
index 12601fd..e8ca571 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_preseed.1.pot b/manpages/pot/lh_chroot_preseed.1.pot
index dee6482..c13f82d 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_proc.1.pot b/manpages/pot/lh_chroot_proc.1.pot
index aaef428..1c2080d 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_resolv.1.pot b/manpages/pot/lh_chroot_resolv.1.pot
index ed6ae9c..1412703 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_selinuxfs.1.pot b/manpages/pot/lh_chroot_selinuxfs.1.pot
index 4d73e1c..4cf05e3 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sources.1.pot b/manpages/pot/lh_chroot_sources.1.pot
index 7c471ce..4bfb6b8 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_symlinks.1.pot b/manpages/pot/lh_chroot_symlinks.1.pot
index 7ea603a..23bade9 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysfs.1.pot b/manpages/pot/lh_chroot_sysfs.1.pot
index 6f686e8..c89ac3f 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysv-rc.1.pot b/manpages/pot/lh_chroot_sysv-rc.1.pot
index 6f7bf5a..0b4db13 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysvinit.1.pot b/manpages/pot/lh_chroot_sysvinit.1.pot
index 0b576d4..3ac55ee 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_tasks.1.pot b/manpages/pot/lh_chroot_tasks.1.pot
index dda0ebc..04c3c00 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_upstart.1.pot b/manpages/pot/lh_chroot_upstart.1.pot
index 4ef52c9..4795f9b 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_clean.1.pot b/manpages/pot/lh_clean.1.pot
index 0ae3fcd..ae859ee 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_config.1.pot b/manpages/pot/lh_config.1.pot
index 79fb355..ae10ff9 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
@@ -826,7 +826,7 @@ msgstr ""
#. type: Plain text
#: en/lh_config.1:63
-msgid " [B<--chroot-build> true|false]"
+msgid " [B<--build-with-chroot> true|false]"
msgstr ""
#. type: Plain text
@@ -1600,7 +1600,7 @@ msgstr ""
#. type: IP
#: en/lh_config.1:270
#, no-wrap
-msgid "B<--chroot-build> true|false"
+msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
@@ -2125,8 +2125,7 @@ msgid ""
"in the final image and which is the one a user would see and use. This has "
"not necessarily to be the same that is used to build the image, e.g. if you "
"use a local mirror but want to have an official mirror in the image. By "
-"default, the same value that is used for --mirror-chroot is used here unless "
-"specified different."
+"default, 'http://cdn.debian.net/debian/' is used."
msgstr ""
#. type: IP
@@ -2139,8 +2138,8 @@ msgstr ""
#: en/lh_config.1:344
msgid ""
"sets the location of the debian security package mirror that should end up "
-"configuered in the final image. By default, the same value that is used for "
-"--mirror-chroot-security is used here unless specified different."
+"configuered in the final image. By default, 'http://cdn.debian.net/debian-"
+"security/' is used."
msgstr ""
#. type: IP
@@ -2154,7 +2153,7 @@ msgstr ""
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages in order to build the live system. By default, this points to "
-"http://ftp.us.debian.org/debian/ which may not be a good default if you live "
+"http://ftp.de.debian.org/debian/ which may not be a good default if you live "
"outside the U.S."
msgstr ""
diff --git a/manpages/pot/lh_local.1.pot b/manpages/pot/lh_local.1.pot
index c201151..639bc65 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source.1.pot b/manpages/pot/lh_source.1.pot
index 9ae3294..6413bf1 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_checksums.1.pot b/manpages/pot/lh_source_checksums.1.pot
index a3db057..0c7f01a 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_debian-live.1.pot b/manpages/pot/lh_source_debian-live.1.pot
index d76ad99..e903462 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_debian.1.pot b/manpages/pot/lh_source_debian.1.pot
index b089803..35192ce 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_disk.1.pot b/manpages/pot/lh_source_disk.1.pot
index ece110b..f34f981 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_iso.1.pot b/manpages/pot/lh_source_iso.1.pot
index 755af5e..b7b5e98 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_net.1.pot b/manpages/pot/lh_source_net.1.pot
index 68a082d..bdc2027 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_tar.1.pot b/manpages/pot/lh_source_tar.1.pot
index 9df4dce..678eb84 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_usb.1.pot b/manpages/pot/lh_source_usb.1.pot
index 6de48f0..dac5e20 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_virtual-hdd.1.pot b/manpages/pot/lh_source_virtual-hdd.1.pot
index 4736700..bae1a42 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_testroot.1.pot b/manpages/pot/lh_testroot.1.pot
index 9c46fde..8b8de10 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
diff --git a/manpages/pot/live-helper.7.pot b/manpages/pot/live-helper.7.pot
index 598fb7f..884954e 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-05-12 05:55+0300\n"
+"POT-Creation-Date: 2010-05-23 12:35+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-05-12"
+msgid "2010-05-23"
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~a12"
+msgid "2.0~a13"
msgstr ""
#. type: TH
--
live-helper
More information about the debian-live-changes
mailing list