From 9d6a4dedc2736389349345c29d3a8a48b7b70692 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 18 Feb 2010 17:12:59 +0100 Subject: Cleaning up usb helpers for a future usb-zip addition. --- functions/defaults.sh | 40 +- helpers/binary | 2 +- helpers/binary_debian-installer | 14 +- helpers/binary_disk | 2 +- helpers/binary_grub | 4 +- helpers/binary_grub2 | 4 +- helpers/binary_includes | 17 +- helpers/binary_local-includes | 9 +- helpers/binary_silo | 4 +- helpers/binary_syslinux | 8 +- helpers/binary_usb | 280 ++++++++++++ helpers/binary_usb-hdd | 280 ------------ helpers/binary_yaboot | 19 +- helpers/source | 2 +- helpers/source_usb | 139 ++++++ helpers/source_usb-hdd | 139 ------ manpages/lh_binary_usb-hdd.en.1 | 29 -- manpages/lh_binary_usb.en.1 | 29 ++ manpages/lh_source_usb-hdd.en.1 | 29 -- manpages/lh_source_usb.en.1 | 29 ++ manpages/live-helper.en.7 | 4 +- manpages/po4a/de/lh_binary_usb-hdd.en.1.po | 660 --------------------------- manpages/po4a/de/lh_binary_usb.en.1.po | 660 +++++++++++++++++++++++++++ manpages/po4a/de/lh_source_usb-hdd.en.1.po | 654 -------------------------- manpages/po4a/de/lh_source_usb.en.1.po | 654 ++++++++++++++++++++++++++ manpages/po4a/fr/lh_binary_usb-hdd.en.1.po | 655 -------------------------- manpages/po4a/fr/lh_binary_usb.en.1.po | 655 ++++++++++++++++++++++++++ manpages/po4a/fr/lh_source_usb-hdd.en.1.po | 648 -------------------------- manpages/po4a/fr/lh_source_usb.en.1.po | 648 ++++++++++++++++++++++++++ manpages/po4a/pot/lh_binary_usb-hdd.en.1.pot | 642 -------------------------- manpages/po4a/pot/lh_binary_usb.en.1.pot | 642 ++++++++++++++++++++++++++ manpages/po4a/pot/lh_source_usb-hdd.en.1.pot | 636 -------------------------- manpages/po4a/pot/lh_source_usb.en.1.pot | 636 ++++++++++++++++++++++++++ 33 files changed, 4441 insertions(+), 4432 deletions(-) create mode 100755 helpers/binary_usb delete mode 100755 helpers/binary_usb-hdd create mode 100755 helpers/source_usb delete mode 100755 helpers/source_usb-hdd delete mode 100644 manpages/lh_binary_usb-hdd.en.1 create mode 100644 manpages/lh_binary_usb.en.1 delete mode 100644 manpages/lh_source_usb-hdd.en.1 create mode 100644 manpages/lh_source_usb.en.1 delete mode 100644 manpages/po4a/de/lh_binary_usb-hdd.en.1.po create mode 100644 manpages/po4a/de/lh_binary_usb.en.1.po delete mode 100644 manpages/po4a/de/lh_source_usb-hdd.en.1.po create mode 100644 manpages/po4a/de/lh_source_usb.en.1.po delete mode 100644 manpages/po4a/fr/lh_binary_usb-hdd.en.1.po create mode 100644 manpages/po4a/fr/lh_binary_usb.en.1.po delete mode 100644 manpages/po4a/fr/lh_source_usb-hdd.en.1.po create mode 100644 manpages/po4a/fr/lh_source_usb.en.1.po delete mode 100644 manpages/po4a/pot/lh_binary_usb-hdd.en.1.pot create mode 100644 manpages/po4a/pot/lh_binary_usb.en.1.pot delete mode 100644 manpages/po4a/pot/lh_source_usb-hdd.en.1.pot create mode 100644 manpages/po4a/pot/lh_source_usb.en.1.pot diff --git a/functions/defaults.sh b/functions/defaults.sh index fab7cfa..a5712b7 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -757,7 +757,7 @@ Set_defaults () _LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" ;; - usb-hdd) + usb*) if [ "${LH_MODE}" = "ubuntu" ] || [ "${LH_DEBIAN_INSTALLER}" = "live" ] then _LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" @@ -780,14 +780,15 @@ Set_defaults () esac fi - if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ] - then - # Try USB block devices for install media - if ! echo "${LH_BOOTAPPEND_INSTALL}" | grep -q try-usb - then - LH_BOOTAPPEND_INSTALL="cdrom-detect/try-usb=true ${LH_BOOTAPPEND_INSTALL}" - fi - fi + case "${LH_BINARY_IMAGES}" in + usb*) + # Try USB block devices for install media + if ! echo "${LH_BOOTAPPEND_INSTALL}" | grep -q try-usb + then + LH_BOOTAPPEND_INSTALL="cdrom-detect/try-usb=true ${LH_BOOTAPPEND_INSTALL}" + fi + ;; + esac if [ -n ${_LH_BOOTAPPEND_PRESEED} ] then @@ -1028,16 +1029,17 @@ Check_defaults () esac fi - if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ] - then - # grub or yaboot + usb-hdd - case "${LH_BOOTLOADER}" in - grub|yaboot) - Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type." - exit 1 - ;; - esac - fi + case "${LH_BINARY_IMAGES}" in + usb*) + # grub or yaboot + usb + case "${LH_BOOTLOADER}" in + grub|yaboot) + Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type." + exit 1 + ;; + esac + ;; + esac if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -gt 128 ] then diff --git a/helpers/binary b/helpers/binary index b0f81ae..234d898 100755 --- a/helpers/binary +++ b/helpers/binary @@ -78,7 +78,7 @@ fi lh binary_iso ${*} lh binary_net ${*} lh binary_tar ${*} -lh binary_usb-hdd ${*} +lh binary_usb ${*} lh binary_virtual-hdd ${*} if [ "${LH_CHROOT_BUILD}" = "true" ] diff --git a/helpers/binary_debian-installer b/helpers/binary_debian-installer index cb1af38..d525ca6 100755 --- a/helpers/binary_debian-installer +++ b/helpers/binary_debian-installer @@ -83,7 +83,7 @@ case "${LH_BINARY_IMAGES}" in DESTDIR="tftpboot/debian-install/${LH_ARCHITECTURE}" ;; - tar|usb-hdd) + usb*|tar) DESTDIR="binary/install" ;; @@ -601,10 +601,14 @@ EOF ln -s ${LH_DEBIAN_INSTALLER_DISTRIBUTION} binary/dists/${DISTRIBUTION} done - if [ "${LH_BINARY_IMAGES}" != "usb-hdd" ] - then - ln -s . binary/debian - fi + case "${LH_BINARY_IMAGES}" in + usb*) + ;; + + *) + ln -s . binary/debian + ;; + esac # Including preseeding files if Find_files config/binary_debian-installer/*.cfg diff --git a/helpers/binary_disk b/helpers/binary_disk index 2bbd73d..8116734 100755 --- a/helpers/binary_disk +++ b/helpers/binary_disk @@ -24,7 +24,7 @@ Read_conffiles config/all config/common config/bootstrap config/chroot config/bi Set_defaults case "${LH_BINARY_IMAGES}" in - iso|usb-hdd) + iso|usb*) ;; *) exit 0 diff --git a/helpers/binary_grub b/helpers/binary_grub index 35fa43d..b3f9ba1 100755 --- a/helpers/binary_grub +++ b/helpers/binary_grub @@ -142,7 +142,7 @@ case "${LH_BINARY_IMAGES}" in DESTDIR_INSTALL="binary/install" ;; - usb-hdd|net) + usb*|net) Echo_warning "Bootloader in this image type not yet supported by live-helper." Echo_warning "This would produce a not bootable image, aborting (FIXME)." exit 1 @@ -280,7 +280,7 @@ case ${LH_BINARY_IMAGES} in FILES="chroot/usr/lib/grub/*/stage2_eltorito" ;; - tar|usb-hdd) + usb*|tar) FILES="chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/e2fs_stage1_5 chroot/usr/lib/grub/*/stage2" ;; esac diff --git a/helpers/binary_grub2 b/helpers/binary_grub2 index 76b9373..0cf0618 100755 --- a/helpers/binary_grub2 +++ b/helpers/binary_grub2 @@ -116,7 +116,7 @@ case "${LH_BINARY_IMAGES}" in DESTDIR_INSTALL="binary/install" ;; - usb-hdd|net) + usb*|net) Echo_warning "Bootloader in this image type not yet supported by live-helper." Echo_warning "This would produce a not bootable image, aborting (FIXME)." exit 1 @@ -253,7 +253,7 @@ case ${LH_BINARY_IMAGES} in FILES="chroot/usr/lib/grub/i386-pc/*.mod chroot/usr/lib/grub/i386-pc/*.lst chroot/usr/lib/grub/i386-pc/efiemu??.o chroot/usr/share/grub/*.pf2" ;; - tar|usb-hdd) + usb*|tar) FILES="chroot/usr/lib/grub/i386-pc/*" ;; esac diff --git a/helpers/binary_includes b/helpers/binary_includes index 196f902..e37f4df 100755 --- a/helpers/binary_includes +++ b/helpers/binary_includes @@ -80,14 +80,15 @@ case "${LH_ARCHITECTURE}" in esac # Working arround vfat limitations -if [ "${LH_BINARY_IMAGE}" = "usb-hdd" ] -then - case "${LH_BINARY_FILESYSTEM}" in - fat*) - CP_OPTIONS="-L" - ;; - esac -fi +case "${LH_BINARY_IMAGES}" in + usb*) + case "${LH_BINARY_FILESYSTEM}" in + fat*) + CP_OPTIONS="-L" + ;; + esac + ;; +esac # Copying common templates if [ -d "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/common ] && \ diff --git a/helpers/binary_local-includes b/helpers/binary_local-includes index 63986ae..44f93c9 100755 --- a/helpers/binary_local-includes +++ b/helpers/binary_local-includes @@ -45,10 +45,11 @@ then cd "${OLDPWD}" # Removing symlinks - if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ] - then - find binary -type l | xargs rm -f - fi + case "${LH_BINARY_IMAGES}" in + usb*) + find binary -type l | xargs rm -f + ;; + esac # Creating stage file Create_stagefile .stage/binary_local-includes diff --git a/helpers/binary_silo b/helpers/binary_silo index d79d0b7..df7ee10 100755 --- a/helpers/binary_silo +++ b/helpers/binary_silo @@ -30,7 +30,7 @@ fi # Check image type case "${LH_BINARY_IMAGES}" in - iso|usb-hdd|tar) + iso|usb*|tar) ;; net) @@ -225,7 +225,7 @@ fi LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')" case "${LH_BINARY_IMAGES}" in - iso|usb-hdd) + iso|usb*) # Copying silo mkdir -p binary/boot diff --git a/helpers/binary_syslinux b/helpers/binary_syslinux index ba7f9d5..9d4cab1 100755 --- a/helpers/binary_syslinux +++ b/helpers/binary_syslinux @@ -90,7 +90,7 @@ Syslinux_live_entry () APPEND="${5}" case "${LH_BINARY_IMAGES}" in - iso|usb-hdd) + iso|usb*) NUMBER="$(ls -1 ${KERNEL_PATH} | grep 'vmlinuz[0-9]\+$' | wc -l)" NUMBER="$((${NUMBER} +1))" @@ -334,7 +334,7 @@ Configure_syslinux_templates () done case "${LH_BINARY_IMAGES}" in - usb-hdd) + usb*) if [ -f "${SYSLINUX_PATH}/exithelp.cfg" ] then sed -i -e "s|config isolinux.cfg|config syslinux.cfg|" "${SYSLINUX_PATH}"/exithelp.cfg @@ -387,7 +387,7 @@ case "${LH_BINARY_IMAGES}" in MEDIA="netboot" ;; - tar|usb-hdd) + usb*|tar) SYSLINUX_PATH="binary/syslinux" KERNEL_PATH="binary/${INITFS}" SCREEN_PATH="${SYSLINUX_PATH}" @@ -631,7 +631,7 @@ case "${LH_BINARY_IMAGES}" in fi ;; - tar|usb-hdd) + usb*|tar) case "${LH_CHROOT_BUILD}" in true) cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin diff --git a/helpers/binary_usb b/helpers/binary_usb new file mode 100755 index 0000000..59aae15 --- /dev/null +++ b/helpers/binary_usb @@ -0,0 +1,280 @@ +#!/bin/sh + +# lh_binary_usb(1) - build binary usb image +# Copyright (C) 2006-2009 Daniel Baumann +# +# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +set -e + +# Including common functions +. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh + +# Setting static variables +DESCRIPTION="$(Echo 'build binary image')" +HELP="" +USAGE="${PROGRAM} [--force]" + +Arguments "${@}" + +# Reading configuration files +Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source +Set_defaults + +if ! In_list usb-hdd "${LH_BINARY_IMAGES}" +then + exit 0 +fi + +Echo_message "Begin building binary usb image..." + +# Requiring stage file +Require_stagefile .stage/config .stage/bootstrap .stage/chroot_proc + +# Checking stage file +Check_stagefile .stage/binary_usb + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Checking depends +Check_package chroot/sbin/mkdosfs dosfstools +Check_package chroot/usr/share/doc/mtools mtools +Check_package chroot/sbin/parted parted + +if [ "${LH_ARCHITECTURE}" = "sparc" ] +then + case "${LH_BINARY_FILESYSTEM}" in + ext2|ext3) + Check_package chroot/sbin/mkfs.ext2 e2fsprogs + ;; + + *) + Echo_error "Sparc only supports booting from ext2, ext3 (or ufs)" + exit 1 + ;; + esac +fi + +case "${LH_BOOTLOADER}" in + grub) + Check_package chroot/usr/sbin/grub grub + ;; + + syslinux) + Check_package chroot/usr/bin/syslinux syslinux + ;; +esac + +# Restoring cache +Restore_cache cache/packages_binary + +# Installing depends +Install_package + +# Remove old binary +if [ -f binary.img ] +then + rm -f binary.img +fi + +# Enforce fat32 if we find individual files bigger than 2GB +if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ -n "$(find binary -size +1999M)" ] +then + Echo_warning "FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32." + + LH_BINARY_FILESYSTEM="fat32" + export LH_BINARY_FILESYSTEM +fi + +# Enforce fat32 if we have images in total bigger than 2GB +if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(du -s binary | awk '{ print $1 }')" -gt "1900000" ] +then + Echo_warning "FAT16 doesn't support partitions larger than 2GB, automatically enforcing FAT32" + + LH_BINARY_FILESYSTEM="fat32" + export LH_BINARY_FILESYSTEM +fi + +# Everything which comes here needs to be cleaned up, +DU_DIM="$(du -ms binary | cut -f1)" +REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})" +dd if=/dev/zero of=chroot/binary.img bs=1024k count=0 seek=${REAL_DIM} +FREELO="$(${LH_LOSETUP} -f)" +if [ ! -b chroot/${FREELO} ] +then + MAKEDEV="true" + + mv chroot/dev chroot/dev.tmp + find /dev | cpio -dmpu chroot +fi + +echo "!!! The following error/warning messages can be ignored !!!" +Losetup $FREELO chroot/binary.img 0 + +case "${LH_ARCHITECTURE}" in + sparc) + PARTITION_TABLE_TYPE="sun" + ;; + *) + PARTITION_TABLE_TYPE="msdos" + ;; +esac + +case "${LH_BINARY_FILESYSTEM}" in + ext2|ext3) + PARTITION_TYPE="ext2" + ;; + + fat16|fat32) + PARTITION_TYPE="${LH_BINARY_FILESYSTEM}" + ;; + + *) + Echo_error "Unsupported binary filesystem %s" "${LH_BINARY_FILESYSTEM}" + exit 1 + ;; +esac + +case "${LH_CHROOT_BUILD}" 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 + Chroot chroot "parted -s ${FREELO} set 1 boot on" || true + Chroot chroot "parted -s ${FREELO} set 1 lba off" || true + + if [ "${LH_BOOTLOADER}" = "syslinux" ] + then + dd if=chroot/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1 + fi + ;; + + false) + parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE} || true + parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100% || true + parted -s ${FREELO} set 1 boot on || true + parted -s ${FREELO} set 1 lba off || true + + if [ "${LH_BOOTLOADER}" = "syslinux" ] + then + dd if=/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1 + fi + ;; +esac + +sleep 1 +${LH_LOSETUP} -d ${FREELO} + +FREELO="$(${LH_LOSETUP} -f)" +Losetup $FREELO chroot/binary.img 1 + +case "${LH_BINARY_FILESYSTEM}" in + ext2|ext3) + MKFS="${LH_BINARY_FILESYSTEM}" + MKFS_OPTIONS="-L DEBIAN_LIVE -m 0" + ;; + + fat16) + MKFS="vfat" + MKFS_OPTIONS="-F 16 -n DEBIAN_LIVE" + ;; + + fat32) + MKFS="vfat" + MKFS_OPTIONS="-F 32 -n DEBIAN_LIVE" + ;; +esac + +case "${LH_CHROOT_BUILD}" in + true) + Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" + ;; + + false) + mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO} + ;; +esac + +case "${LH_BINARY_FILESYSTEM}" in + fat*) + CP_OPTIONS="-L" + ;; +esac + +mkdir -p chroot/binary.tmp +${LH_ROOT_COMMAND} mount ${FREELO} chroot/binary.tmp +cp -r -T ${CP_OPTIONS} binary/ chroot/binary.tmp + +FIXME() +{ +if [ "${LH_BOOTLOADER}" = "grub" ] +then + +cat > chroot/grub.sh << EOF +cd binary.tmp +grub --batch << EOM +find /live/vmlinuz +EOM +EOF + + rootpartition="$(Chroot chroot 'sh grub.sh' 2>/dev/null | grep -A 1 'find /live/vmlinuz' | grep -v 'find /live/vmlinuz')" + usbdev="$(echo $rootpartition | sed -e 's|,[[:digit:]]||')" + echo "Root partition is $rootpartition, device is: $usbdev" + + echo "WAITING..." && read WAIT + +#cat > chroot/grub.sh << EOF +#grub --batch << EOM +#root $rootpartition +#setup $usbdev +#EOM +#EOF + +#Chroot chroot "sh grub.sh" + + rm -f chroot/grub.sh +fi +} + +${LH_ROOT_COMMAND} umount chroot/binary.tmp +rmdir chroot/binary.tmp + +if [ "${LH_BOOTLOADER}" = "syslinux" ] +then + case "${LH_CHROOT_BUILD}" in + true) + Chroot chroot "syslinux ${FREELO}" + ;; + + false) + syslinux ${FREELO} + ;; + esac +fi + +sleep 1 +${LH_LOSETUP} -d ${FREELO} + +echo "!!! The above error/warning messages can be ignored !!!" + +if [ -n "${MAKEDEV}" ] +then + rm -rf chroot/dev + mv chroot/dev.tmp chroot/dev +fi + +mv chroot/binary.img ./ + +# Saving cache +Save_cache cache/packages_binary + +# Removing depends +Remove_package + +# Creating stage file +Create_stagefile .stage/binary_usb diff --git a/helpers/binary_usb-hdd b/helpers/binary_usb-hdd deleted file mode 100755 index 53d9e37..0000000 --- a/helpers/binary_usb-hdd +++ /dev/null @@ -1,280 +0,0 @@ -#!/bin/sh - -# lh_binary_usb-hdd(1) - build binary usb-hdd image -# Copyright (C) 2006-2009 Daniel Baumann -# -# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -# This is free software, and you are welcome to redistribute it -# under certain conditions; see COPYING for details. - -set -e - -# Including common functions -. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh - -# Setting static variables -DESCRIPTION="$(Echo 'build binary image')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -if ! In_list usb-hdd "${LH_BINARY_IMAGES}" -then - exit 0 -fi - -Echo_message "Begin building binary usb-hdd image..." - -# Requiring stage file -Require_stagefile .stage/config .stage/bootstrap .stage/chroot_proc - -# Checking stage file -Check_stagefile .stage/binary_usb-hdd - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Checking depends -Check_package chroot/sbin/mkdosfs dosfstools -Check_package chroot/usr/share/doc/mtools mtools -Check_package chroot/sbin/parted parted - -if [ "${LH_ARCHITECTURE}" = "sparc" ] -then - case "${LH_BINARY_FILESYSTEM}" in - ext2|ext3) - Check_package chroot/sbin/mkfs.ext2 e2fsprogs - ;; - - *) - Echo_error "Sparc only supports booting from ext2, ext3 (or ufs)" - exit 1 - ;; - esac -fi - -case "${LH_BOOTLOADER}" in - grub) - Check_package chroot/usr/sbin/grub grub - ;; - - syslinux) - Check_package chroot/usr/bin/syslinux syslinux - ;; -esac - -# Restoring cache -Restore_cache cache/packages_binary - -# Installing depends -Install_package - -# Remove old binary -if [ -f binary.img ] -then - rm -f binary.img -fi - -# Enforce fat32 if we find individual files bigger than 2GB -if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ -n "$(find binary -size +1999M)" ] -then - Echo_warning "FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32." - - LH_BINARY_FILESYSTEM="fat32" - export LH_BINARY_FILESYSTEM -fi - -# Enforce fat32 if we have images in total bigger than 2GB -if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(du -s binary | awk '{ print $1 }')" -gt "1900000" ] -then - Echo_warning "FAT16 doesn't support partitions larger than 2GB, automatically enforcing FAT32" - - LH_BINARY_FILESYSTEM="fat32" - export LH_BINARY_FILESYSTEM -fi - -# Everything which comes here needs to be cleaned up, -DU_DIM="$(du -ms binary | cut -f1)" -REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})" -dd if=/dev/zero of=chroot/binary.img bs=1024k count=0 seek=${REAL_DIM} -FREELO="$(${LH_LOSETUP} -f)" -if [ ! -b chroot/${FREELO} ] -then - MAKEDEV="true" - - mv chroot/dev chroot/dev.tmp - find /dev | cpio -dmpu chroot -fi - -echo "!!! The following error/warning messages can be ignored !!!" -Losetup $FREELO chroot/binary.img 0 - -case "${LH_ARCHITECTURE}" in - sparc) - PARTITION_TABLE_TYPE="sun" - ;; - *) - PARTITION_TABLE_TYPE="msdos" - ;; -esac - -case "${LH_BINARY_FILESYSTEM}" in - ext2|ext3) - PARTITION_TYPE="ext2" - ;; - - fat16|fat32) - PARTITION_TYPE="${LH_BINARY_FILESYSTEM}" - ;; - - *) - Echo_error "Unsupported binary filesystem %s" "${LH_BINARY_FILESYSTEM}" - exit 1 - ;; -esac - -case "${LH_CHROOT_BUILD}" 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 - Chroot chroot "parted -s ${FREELO} set 1 boot on" || true - Chroot chroot "parted -s ${FREELO} set 1 lba off" || true - - if [ "${LH_BOOTLOADER}" = "syslinux" ] - then - dd if=chroot/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1 - fi - ;; - - false) - parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE} || true - parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100% || true - parted -s ${FREELO} set 1 boot on || true - parted -s ${FREELO} set 1 lba off || true - - if [ "${LH_BOOTLOADER}" = "syslinux" ] - then - dd if=/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1 - fi - ;; -esac - -sleep 1 -${LH_LOSETUP} -d ${FREELO} - -FREELO="$(${LH_LOSETUP} -f)" -Losetup $FREELO chroot/binary.img 1 - -case "${LH_BINARY_FILESYSTEM}" in - ext2|ext3) - MKFS="${LH_BINARY_FILESYSTEM}" - MKFS_OPTIONS="-L DEBIAN_LIVE -m 0" - ;; - - fat16) - MKFS="vfat" - MKFS_OPTIONS="-F 16 -n DEBIAN_LIVE" - ;; - - fat32) - MKFS="vfat" - MKFS_OPTIONS="-F 32 -n DEBIAN_LIVE" - ;; -esac - -case "${LH_CHROOT_BUILD}" in - true) - Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" - ;; - - false) - mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO} - ;; -esac - -case "${LH_BINARY_FILESYSTEM}" in - fat*) - CP_OPTIONS="-L" - ;; -esac - -mkdir -p chroot/binary.tmp -${LH_ROOT_COMMAND} mount ${FREELO} chroot/binary.tmp -cp -r -T ${CP_OPTIONS} binary/ chroot/binary.tmp - -FIXME() -{ -if [ "${LH_BOOTLOADER}" = "grub" ] -then - -cat > chroot/grub.sh << EOF -cd binary.tmp -grub --batch << EOM -find /live/vmlinuz -EOM -EOF - - rootpartition="$(Chroot chroot 'sh grub.sh' 2>/dev/null | grep -A 1 'find /live/vmlinuz' | grep -v 'find /live/vmlinuz')" - usbdev="$(echo $rootpartition | sed -e 's|,[[:digit:]]||')" - echo "Root partition is $rootpartition, device is: $usbdev" - - echo "WAITING..." && read WAIT - -#cat > chroot/grub.sh << EOF -#grub --batch << EOM -#root $rootpartition -#setup $usbdev -#EOM -#EOF - -#Chroot chroot "sh grub.sh" - - rm -f chroot/grub.sh -fi -} - -${LH_ROOT_COMMAND} umount chroot/binary.tmp -rmdir chroot/binary.tmp - -if [ "${LH_BOOTLOADER}" = "syslinux" ] -then - case "${LH_CHROOT_BUILD}" in - true) - Chroot chroot "syslinux ${FREELO}" - ;; - - false) - syslinux ${FREELO} - ;; - esac -fi - -sleep 1 -${LH_LOSETUP} -d ${FREELO} - -echo "!!! The above error/warning messages can be ignored !!!" - -if [ -n "${MAKEDEV}" ] -then - rm -rf chroot/dev - mv chroot/dev.tmp chroot/dev -fi - -mv chroot/binary.img ./ - -# Saving cache -Save_cache cache/packages_binary - -# Removing depends -Remove_package - -# Creating stage file -Create_stagefile .stage/binary_usb-hdd diff --git a/helpers/binary_yaboot b/helpers/binary_yaboot index fdd857d..ef44e6e 100755 --- a/helpers/binary_yaboot +++ b/helpers/binary_yaboot @@ -149,7 +149,7 @@ case "${LH_BINARY_IMAGES}" in DESTDIR_INSTALL="binary/install" ;; - net|tar|usb-hdd) + usb*|net|tar) Echo_error "not yet supported, aborting (FIXME)." exit 1 ;; @@ -272,7 +272,7 @@ fi LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')" case "${LH_BINARY_IMAGES}" in - iso|usb-hdd) + iso|usb*) # Copying yaboot mkdir -p binary/yaboot @@ -288,13 +288,14 @@ case "${LH_BINARY_IMAGES}" in cp -r "${TEMPLATES}"/* binary/yaboot - if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ] - then - mv binary/yaboot/yaboot.conf binary/yaboot/yaboot.conf.tmp - echo "root=/dev/ram" > binary/yaboot/yaboot.conf - cat binary/yaboot/yaboot.conf.tmp >> binary/yaboot/yaboot.conf - rm -f binary/yaboot/yaboot.conf.tmp - fi + case "${LH_BINARY_IMAGES}" in + usb*) + mv binary/yaboot/yaboot.conf binary/yaboot/yaboot.conf.tmp + echo "root=/dev/ram" > binary/yaboot/yaboot.conf + cat binary/yaboot/yaboot.conf.tmp >> binary/yaboot/yaboot.conf + rm -f binary/yaboot/yaboot.conf.tmp + ;; + esac # Configure yaboot templates sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" binary/yaboot/yaboot.conf diff --git a/helpers/source b/helpers/source index 8d11c44..1783216 100755 --- a/helpers/source +++ b/helpers/source @@ -44,7 +44,7 @@ lh source_md5sum ${*} lh source_iso ${*} lh source_net ${*} lh source_tar ${*} -lh source_usb-hdd ${*} +lh source_usb ${*} lh source_virtual-hdd ${*} # Deconfiguring chroot diff --git a/helpers/source_usb b/helpers/source_usb new file mode 100755 index 0000000..6065382 --- /dev/null +++ b/helpers/source_usb @@ -0,0 +1,139 @@ +#!/bin/sh + +# lh_source_usb(1) - build source usb image +# Copyright (C) 2006-2009 Daniel Baumann +# +# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +set -e + +# Including common functions +. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh + +# Setting static variables +DESCRIPTION="$(Echo 'build source image')" +HELP="" +USAGE="${PROGRAM} [--force]" + +Arguments "${@}" + +# Reading configuration files +Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source +Set_defaults + +if [ "${LH_SOURCE}" != "true" ] +then + exit 0 +fi + +if ! In_list usb-hdd "${LH_SOURCE_IMAGES}" +then + exit 0 +fi + +Echo_message "Begin building source usb image..." + +# Requiring stage file +Require_stagefile .stage/config .stage/source_debian + +# Checking stage file +Check_stagefile .stage/source_usb + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Checking depends +Check_package chroot/sbin/mkdosfs dosfstools +Check_package chroot/sbin/parted parted + +# Installing depends +Install_package + +# Remove old source +if [ -f source.img ] +then + rm -f source.img +fi + +# Everything which comes here needs to be cleaned up, +DU_DIM="$(du -ms source | cut -f1)" +REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})" +dd if=/dev/zero of=source.img bs=1024k count=0 seek=${REAL_DIM} +FREELO="$(${LH_LOSETUP} -f)" +if [ ! -b chroot/${FREELO} ] +then + MAKEDEV="true" + + mv chroot/dev chroot/dev.tmp + find /dev | cpio -dmpu chroot +fi + +case "${LH_BINARY_FILESYSTEM}" in + ext2|ext3) + PARTITION_TYPE="ext2" + ;; + + fat16|fat32) + PARTITION_TYPE="${LH_BINARY_FILESYSTEM}" + ;; + + *) + Echo_error "Unsupported binary filesystem %s" "${LH_BINARY_FILESYSTEM}" + exit 1 + ;; +esac + +Echo_warning "!!! The following error/warning messages can be ignored !!!" +Losetup $FREELO source.img 0 +Chroot chroot "parted -s ${FREELO} mklabel msdos" || true +Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true +Chroot chroot "parted -s ${FREELO} set 1 lba off" || true +sleep 1 +${LH_LOSETUP} -d ${FREELO} + +Losetup $FREELO source.img 1 + +case "${LH_BINARY_FILESYSTEM}" in + ext2|ext3) + MKFS="${LH_BINARY_FILESYSTEM}" + MKFS_OPTIONS="-L DEBIAN_LIVE -m 0" + ;; + + fat16) + MKFS="vfat" + MKFS_OPTIONS="-F 16 -n DEBIAN_LIVE" + ;; + + fat32) + MKFS="vfat" + MKFS_OPTIONS="-F 32 -n DEBIAN_LIVE" + ;; +esac + +Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" + +mkdir -p source.tmp +${LH_ROOT_COMMAND} mount ${FREELO} source.tmp +cp -r source/* source.tmp +${LH_ROOT_COMMAND} umount source.tmp +rmdir source.tmp +sleep 1 +${LH_LOSETUP} -d ${FREELO} +Echo_warning "!!! The above error/warning messages can be ignored !!!" + +if [ -n "${MAKEDEV}" ] +then + rm -rf chroot/dev + mv chroot/dev.tmp chroot/dev +fi + +# Removing depends +Remove_package + +# Creating stage file +Create_stagefile .stage/source_usb diff --git a/helpers/source_usb-hdd b/helpers/source_usb-hdd deleted file mode 100755 index e8cd8ca..0000000 --- a/helpers/source_usb-hdd +++ /dev/null @@ -1,139 +0,0 @@ -#!/bin/sh - -# lh_source_usb-hdd(1) - build source usb-hdd image -# Copyright (C) 2006-2009 Daniel Baumann -# -# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -# This is free software, and you are welcome to redistribute it -# under certain conditions; see COPYING for details. - -set -e - -# Including common functions -. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh - -# Setting static variables -DESCRIPTION="$(Echo 'build source image')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -if [ "${LH_SOURCE}" != "true" ] -then - exit 0 -fi - -if ! In_list usb-hdd "${LH_SOURCE_IMAGES}" -then - exit 0 -fi - -Echo_message "Begin building source usb-hdd image..." - -# Requiring stage file -Require_stagefile .stage/config .stage/source_debian - -# Checking stage file -Check_stagefile .stage/source_usb-hdd - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Checking depends -Check_package chroot/sbin/mkdosfs dosfstools -Check_package chroot/sbin/parted parted - -# Installing depends -Install_package - -# Remove old source -if [ -f source.img ] -then - rm -f source.img -fi - -# Everything which comes here needs to be cleaned up, -DU_DIM="$(du -ms source | cut -f1)" -REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})" -dd if=/dev/zero of=source.img bs=1024k count=0 seek=${REAL_DIM} -FREELO="$(${LH_LOSETUP} -f)" -if [ ! -b chroot/${FREELO} ] -then - MAKEDEV="true" - - mv chroot/dev chroot/dev.tmp - find /dev | cpio -dmpu chroot -fi - -case "${LH_BINARY_FILESYSTEM}" in - ext2|ext3) - PARTITION_TYPE="ext2" - ;; - - fat16|fat32) - PARTITION_TYPE="${LH_BINARY_FILESYSTEM}" - ;; - - *) - Echo_error "Unsupported binary filesystem %s" "${LH_BINARY_FILESYSTEM}" - exit 1 - ;; -esac - -Echo_warning "!!! The following error/warning messages can be ignored !!!" -Losetup $FREELO source.img 0 -Chroot chroot "parted -s ${FREELO} mklabel msdos" || true -Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true -Chroot chroot "parted -s ${FREELO} set 1 lba off" || true -sleep 1 -${LH_LOSETUP} -d ${FREELO} - -Losetup $FREELO source.img 1 - -case "${LH_BINARY_FILESYSTEM}" in - ext2|ext3) - MKFS="${LH_BINARY_FILESYSTEM}" - MKFS_OPTIONS="-L DEBIAN_LIVE -m 0" - ;; - - fat16) - MKFS="vfat" - MKFS_OPTIONS="-F 16 -n DEBIAN_LIVE" - ;; - - fat32) - MKFS="vfat" - MKFS_OPTIONS="-F 32 -n DEBIAN_LIVE" - ;; -esac - -Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" - -mkdir -p source.tmp -${LH_ROOT_COMMAND} mount ${FREELO} source.tmp -cp -r source/* source.tmp -${LH_ROOT_COMMAND} umount source.tmp -rmdir source.tmp -sleep 1 -${LH_LOSETUP} -d ${FREELO} -Echo_warning "!!! The above error/warning messages can be ignored !!!" - -if [ -n "${MAKEDEV}" ] -then - rm -rf chroot/dev - mv chroot/dev.tmp chroot/dev -fi - -# Removing depends -Remove_package - -# Creating stage file -Create_stagefile .stage/source_usb-hdd diff --git a/manpages/lh_binary_usb-hdd.en.1 b/manpages/lh_binary_usb-hdd.en.1 deleted file mode 100644 index 87290d9..0000000 --- a/manpages/lh_binary_usb-hdd.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_usb\-hdd \- build binary usb\-hdd image - -.SH SYNOPSIS -\fBlh_binary_usb\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds binary usb\-hdd image. - -.SH OPTIONS -lh_binary_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_binary\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://debian\-live.alioth.debian.org/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. - -.SH BUGS -Report bugs by submitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or write a mail to the mailinglist at <\fIdebian-live@lists.debian.org\fR>. - -.SH AUTHOR -live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. diff --git a/manpages/lh_binary_usb.en.1 b/manpages/lh_binary_usb.en.1 new file mode 100644 index 0000000..87290d9 --- /dev/null +++ b/manpages/lh_binary_usb.en.1 @@ -0,0 +1,29 @@ +.TH LH_BINARY_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" + +.SH NAME +lh_binary_usb\-hdd \- build binary usb\-hdd image + +.SH SYNOPSIS +\fBlh_binary_usb\-hdd\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +lh_binary_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds binary usb\-hdd image. + +.SH OPTIONS +lh_binary_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. + +.SH SEE ALSO +\fIlh_binary\fR(1) +.br +\fIlive\-helper\fR(7) +.PP +This program is a part of live\-helper. + +.SH HOMEPAGE +More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://debian\-live.alioth.debian.org/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Report bugs by submitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or write a mail to the mailinglist at <\fIdebian-live@lists.debian.org\fR>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. diff --git a/manpages/lh_source_usb-hdd.en.1 b/manpages/lh_source_usb-hdd.en.1 deleted file mode 100644 index 716656c..0000000 --- a/manpages/lh_source_usb-hdd.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_usb\-hdd \- build source usb-hdd image - -.SH SYNOPSIS -\fBlh_source_usb\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source usb-hdd image. - -.SH OPTIONS -lh_source_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_source\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://debian\-live.alioth.debian.org/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. - -.SH BUGS -Report bugs by submitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or write a mail to the mailinglist at <\fIdebian-live@lists.debian.org\fR>. - -.SH AUTHOR -live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. diff --git a/manpages/lh_source_usb.en.1 b/manpages/lh_source_usb.en.1 new file mode 100644 index 0000000..716656c --- /dev/null +++ b/manpages/lh_source_usb.en.1 @@ -0,0 +1,29 @@ +.TH LH_SOURCE_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" + +.SH NAME +lh_source_usb\-hdd \- build source usb-hdd image + +.SH SYNOPSIS +\fBlh_source_usb\-hdd\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +lh_source_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source usb-hdd image. + +.SH OPTIONS +lh_source_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. + +.SH SEE ALSO +\fIlh_source\fR(1) +.br +\fIlive\-helper\fR(7) +.PP +This program is a part of live\-helper. + +.SH HOMEPAGE +More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://debian\-live.alioth.debian.org/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Report bugs by submitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or write a mail to the mailinglist at <\fIdebian-live@lists.debian.org\fR>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. diff --git a/manpages/live-helper.en.7 b/manpages/live-helper.en.7 index 1ef64c9..dba08f1 100644 --- a/manpages/live-helper.en.7 +++ b/manpages/live-helper.en.7 @@ -189,7 +189,7 @@ installs silo into binary installs syslinux into binary .IP "\fBlh_binary_tar\fR(1)" 4 build harddisk binary image -.IP "\fBlh_binary_usb-hdd\fR(1)" 4 +.IP "\fBlh_binary_usb\fR(1)" 4 build binary usb-hdd image .IP "\fBlh_binary_virtual-hdd\fR(1)" 4 build binary virtual-hdd image @@ -212,7 +212,7 @@ create source md5sum build source net image .IP "\fBlh_source_tar\fR(1)" 4 build source tarball -.IP "\fBlh_source_usb-hdd\fR(1)" 4 +.IP "\fBlh_source_usb\fR(1)" 4 build source usb-hdd image .IP "\fBlh_source_virtual-hdd\fR(1)" 4 build source virtual-hdd image diff --git a/manpages/po4a/de/lh_binary_usb-hdd.en.1.po b/manpages/po4a/de/lh_binary_usb-hdd.en.1.po deleted file mode 100644 index 59dfcde..0000000 --- a/manpages/po4a/de/lh_binary_usb-hdd.en.1.po +++ /dev/null @@ -1,660 +0,0 @@ -# German translation for live-helper package -# Copyright (C) 2007 Daniel Baumann -# This file is distributed under the same license as the -# live-helper package. -# Chris Leick , 2009. -# file: lh_binary_usb-hdd -# -msgid "" -msgstr "" -"Project-Id-Version: live-helper 1.0.5\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: 2009-03-01 12:49+0100\n" -"Last-Translator: Chris Leick \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "2009-02-14" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "1.0.4" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "Live-Helper" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "NAME" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "ÜBERSICHT" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "BESCHREIBUNG" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "OPTIONEN" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "SIEHE AUCH" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I(1)" -msgstr "I(1)" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "I(7)" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "Dieses Programm ist Teil von Live-Helper." - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "HOMEPAGE" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" -"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können " -"auf der Homepage EIE und " -"im Handbuch unter EIE gefunden " -"werden." - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "FEHLER" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" -"Berichten Sie Fehler, indem Sie einen Fehlerbericht zum Live-Helper-Paket " -"an die Debian-Fehlerdatenbank unter EIE " -"einreichen oder schreiben Sie eine englischsprachige E-Mail an die " -"Mailingliste EIE." - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" -"Live-Helper wurde von Daniel Baumann EIE für " -"das Debian-Projekt geschrieben." - -# type: TH -#: lh_binary_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_BINARY_USB-HDD" -msgstr "LH_BINARY_USB-HDD" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:5 -msgid "lh_binary_usb-hdd - build binary usb-hdd image" -msgstr "lh_binary_usb-hdd - USB-HDD-Programm-Image erstellen" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:8 -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:11 -msgid "" -"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds binary usb-hdd image." -msgstr "" -"lh_binary_usb-hdd ist ein Befehl niedriger Stufe (Klempnerei) von " -"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erstellt ein " -"USB-HDD-Programm-Image." - -# type: Plain text -#: lh_binary_usb-hdd.en.1:14 -msgid "" -"lh_binary_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" -"lh_binary_usb-hdd hat keine speziellen Optionen, versteht jedoch alle " -"generischen Live-Helper-Optionen. Siehe I(7), um eine Liste aller " -"generischen Live-Helper-Optionen zu erhalten." diff --git a/manpages/po4a/de/lh_binary_usb.en.1.po b/manpages/po4a/de/lh_binary_usb.en.1.po new file mode 100644 index 0000000..59dfcde --- /dev/null +++ b/manpages/po4a/de/lh_binary_usb.en.1.po @@ -0,0 +1,660 @@ +# German translation for live-helper package +# Copyright (C) 2007 Daniel Baumann +# This file is distributed under the same license as the +# live-helper package. +# Chris Leick , 2009. +# file: lh_binary_usb-hdd +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper 1.0.5\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: 2009-03-01 12:49+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "2009-02-14" +msgstr "2009-02-14" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "1.0.4" +msgstr "1.0.4" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "Live-Helper" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "NAME" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "ÜBERSICHT" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "BESCHREIBUNG" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "OPTIONEN" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "SIEHE AUCH" + +# type: Plain text +#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 +#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 +#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 +#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 +#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 +#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 +#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 +#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 +#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 +#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 +msgid "I(1)" +msgstr "I(1)" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "I(7)" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +msgid "This program is a part of live-helper." +msgstr "Dieses Programm ist Teil von Live-Helper." + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "HOMEPAGE" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" +"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können " +"auf der Homepage EIE und " +"im Handbuch unter EIE gefunden " +"werden." + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "FEHLER" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" +"Berichten Sie Fehler, indem Sie einen Fehlerbericht zum Live-Helper-Paket " +"an die Debian-Fehlerdatenbank unter EIE " +"einreichen oder schreiben Sie eine englischsprachige E-Mail an die " +"Mailingliste EIE." + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTOR" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" +"Live-Helper wurde von Daniel Baumann EIE für " +"das Debian-Projekt geschrieben." + +# type: TH +#: lh_binary_usb-hdd.en.1:1 +#, no-wrap +msgid "LH_BINARY_USB-HDD" +msgstr "LH_BINARY_USB-HDD" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:5 +msgid "lh_binary_usb-hdd - build binary usb-hdd image" +msgstr "lh_binary_usb-hdd - USB-HDD-Programm-Image erstellen" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:8 +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:11 +msgid "" +"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds binary usb-hdd image." +msgstr "" +"lh_binary_usb-hdd ist ein Befehl niedriger Stufe (Klempnerei) von " +"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erstellt ein " +"USB-HDD-Programm-Image." + +# type: Plain text +#: lh_binary_usb-hdd.en.1:14 +msgid "" +"lh_binary_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" +"lh_binary_usb-hdd hat keine speziellen Optionen, versteht jedoch alle " +"generischen Live-Helper-Optionen. Siehe I(7), um eine Liste aller " +"generischen Live-Helper-Optionen zu erhalten." diff --git a/manpages/po4a/de/lh_source_usb-hdd.en.1.po b/manpages/po4a/de/lh_source_usb-hdd.en.1.po deleted file mode 100644 index 66d4612..0000000 --- a/manpages/po4a/de/lh_source_usb-hdd.en.1.po +++ /dev/null @@ -1,654 +0,0 @@ -# German translation for live-helper package -# Copyright (C) 2007 Daniel Baumann -# This file is distributed under the same license as the -# live-helper package. -# Chris Leick , 2009. -# file: lh_source_usb-hdd -# -msgid "" -msgstr "" -"Project-Id-Version: live-helper 1.0.5\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: 2009-03-01 12:49+0100\n" -"Last-Translator: Chris Leick \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "2009-02-14" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "1.0.4" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "Live-Helper" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "NAME" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "ÜBERSICHT" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "BESCHREIBUNG" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "OPTIONEN" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "SIEHE AUCH" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "I(7)" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "Dieses Programm ist Teil von Live-Helper." - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "HOMEPAGE" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" -"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können " -"auf der Homepage EIE und " -"im Handbuch unter EIE gefunden " -"werden." - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "FEHLER" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" -"Berichten Sie Fehler, indem Sie einen Fehlerbericht zum Live-Helper-Paket " -"an die Debian-Fehlerdatenbank unter EIE " -"einreichen oder schreiben Sie eine englischsprachige E-Mail an die " -"Mailingliste EIE." - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" -"Live-Helper wurde von Daniel Baumann EIE für " -"das Debian-Projekt geschrieben." - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I(1)" -msgstr "I(1)" - -# type: TH -#: lh_source_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_SOURCE_USB-HDD" -msgstr "LH_SOURCE_USB-HDD" - -# type: Plain text -#: lh_source_usb-hdd.en.1:5 -msgid "lh_source_usb-hdd - build source usb-hdd image" -msgstr "lh_source_usb-hdd - Quellen-USB-HDD-Image erzeugen" - -# type: Plain text -#: lh_source_usb-hdd.en.1:8 -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_source_usb-hdd.en.1:11 -msgid "" -"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds source usb-hdd image." -msgstr "" -"lh_source_usb-hdd is ist ein Befehl niedriger Stufe (Klempnerei) von " -"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erzeugt ein " -"Quellen-USB-HDD-Image." - -# type: Plain text -#: lh_source_usb-hdd.en.1:14 -msgid "" -"lh_source_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" -"lh_source_usb-hdd is hat keine speziellen Optionen, versteht jedoch alle " -"generischen Live-Helper-Optionen. Siehe I(7), um eine Liste " -"aller generischen Live-Helper-Optionen zu erhalten." diff --git a/manpages/po4a/de/lh_source_usb.en.1.po b/manpages/po4a/de/lh_source_usb.en.1.po new file mode 100644 index 0000000..66d4612 --- /dev/null +++ b/manpages/po4a/de/lh_source_usb.en.1.po @@ -0,0 +1,654 @@ +# German translation for live-helper package +# Copyright (C) 2007 Daniel Baumann +# This file is distributed under the same license as the +# live-helper package. +# Chris Leick , 2009. +# file: lh_source_usb-hdd +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper 1.0.5\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: 2009-03-01 12:49+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "2009-02-14" +msgstr "2009-02-14" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "1.0.4" +msgstr "1.0.4" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "Live-Helper" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "NAME" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "ÜBERSICHT" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "BESCHREIBUNG" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "OPTIONEN" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "SIEHE AUCH" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "I(7)" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +msgid "This program is a part of live-helper." +msgstr "Dieses Programm ist Teil von Live-Helper." + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "HOMEPAGE" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" +"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können " +"auf der Homepage EIE und " +"im Handbuch unter EIE gefunden " +"werden." + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "FEHLER" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" +"Berichten Sie Fehler, indem Sie einen Fehlerbericht zum Live-Helper-Paket " +"an die Debian-Fehlerdatenbank unter EIE " +"einreichen oder schreiben Sie eine englischsprachige E-Mail an die " +"Mailingliste EIE." + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTOR" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" +"Live-Helper wurde von Daniel Baumann EIE für " +"das Debian-Projekt geschrieben." + +# type: Plain text +#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 +#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 +#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 +#: lh_source_virtual-hdd.en.1:17 +msgid "I(1)" +msgstr "I(1)" + +# type: TH +#: lh_source_usb-hdd.en.1:1 +#, no-wrap +msgid "LH_SOURCE_USB-HDD" +msgstr "LH_SOURCE_USB-HDD" + +# type: Plain text +#: lh_source_usb-hdd.en.1:5 +msgid "lh_source_usb-hdd - build source usb-hdd image" +msgstr "lh_source_usb-hdd - Quellen-USB-HDD-Image erzeugen" + +# type: Plain text +#: lh_source_usb-hdd.en.1:8 +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_source_usb-hdd.en.1:11 +msgid "" +"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds source usb-hdd image." +msgstr "" +"lh_source_usb-hdd is ist ein Befehl niedriger Stufe (Klempnerei) von " +"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erzeugt ein " +"Quellen-USB-HDD-Image." + +# type: Plain text +#: lh_source_usb-hdd.en.1:14 +msgid "" +"lh_source_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" +"lh_source_usb-hdd is hat keine speziellen Optionen, versteht jedoch alle " +"generischen Live-Helper-Optionen. Siehe I(7), um eine Liste " +"aller generischen Live-Helper-Optionen zu erhalten." diff --git a/manpages/po4a/fr/lh_binary_usb-hdd.en.1.po b/manpages/po4a/fr/lh_binary_usb-hdd.en.1.po deleted file mode 100644 index 0868666..0000000 --- a/manpages/po4a/fr/lh_binary_usb-hdd.en.1.po +++ /dev/null @@ -1,655 +0,0 @@ -# French translations for PACKAGE package -# Copyright (C) 2009 Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# Automatically generated, 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: 2009-03-01 12:49+0100\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, fuzzy, no-wrap -msgid "2009-02-14" -msgstr "2007-11-26" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, fuzzy, no-wrap -msgid "1.0.4" -msgstr "1.0~a38" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "live-helper" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "NOM" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SYNOPSIS" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIPTION" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "VOIR AUSSI" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -#, fuzzy -msgid "I(1)" -msgstr "B [I]" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "I(7)" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -#, fuzzy -msgid "This program is a part of live-helper." -msgstr "Ce programme fait partie de live-helper." - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "HÉBERGEMENT" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -#, fuzzy -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" -"Plus d'informations sur le projet Debian Live peut être trouvée sur " -"EIE et EIE." - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "ANOMALIES" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTEUR" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" -"live-helper a été écrit par Daniel Baumann EIE " -"pour le projet Debian." - -# type: TH -#: lh_binary_usb-hdd.en.1:1 -#, fuzzy, no-wrap -msgid "LH_BINARY_USB-HDD" -msgstr "LH_BINARY" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:5 -msgid "lh_binary_usb-hdd - build binary usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:8 -#, fuzzy -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:11 -#, fuzzy -msgid "" -"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds binary usb-hdd image." -msgstr "" -"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires " -"à live-helper dans le bon ordre pour effectuer l'étape de construction du " -"binaire." - -# type: Plain text -#: lh_binary_usb-hdd.en.1:14 -msgid "" -"lh_binary_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/fr/lh_binary_usb.en.1.po b/manpages/po4a/fr/lh_binary_usb.en.1.po new file mode 100644 index 0000000..0868666 --- /dev/null +++ b/manpages/po4a/fr/lh_binary_usb.en.1.po @@ -0,0 +1,655 @@ +# French translations for PACKAGE package +# Copyright (C) 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# Automatically generated, 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: 2009-03-01 12:49+0100\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, fuzzy, no-wrap +msgid "2009-02-14" +msgstr "2007-11-26" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, fuzzy, no-wrap +msgid "1.0.4" +msgstr "1.0~a38" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "live-helper" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "NOM" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "SYNOPSIS" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIPTION" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "VOIR AUSSI" + +# type: Plain text +#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 +#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 +#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 +#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 +#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 +#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 +#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 +#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 +#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 +#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 +#, fuzzy +msgid "I(1)" +msgstr "B [I]" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "I(7)" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +#, fuzzy +msgid "This program is a part of live-helper." +msgstr "Ce programme fait partie de live-helper." + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "HÉBERGEMENT" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +#, fuzzy +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" +"Plus d'informations sur le projet Debian Live peut être trouvée sur " +"EIE et EIE." + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "ANOMALIES" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTEUR" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" +"live-helper a été écrit par Daniel Baumann EIE " +"pour le projet Debian." + +# type: TH +#: lh_binary_usb-hdd.en.1:1 +#, fuzzy, no-wrap +msgid "LH_BINARY_USB-HDD" +msgstr "LH_BINARY" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:5 +msgid "lh_binary_usb-hdd - build binary usb-hdd image" +msgstr "" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:8 +#, fuzzy +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:11 +#, fuzzy +msgid "" +"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds binary usb-hdd image." +msgstr "" +"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires " +"à live-helper dans le bon ordre pour effectuer l'étape de construction du " +"binaire." + +# type: Plain text +#: lh_binary_usb-hdd.en.1:14 +msgid "" +"lh_binary_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po4a/fr/lh_source_usb-hdd.en.1.po b/manpages/po4a/fr/lh_source_usb-hdd.en.1.po deleted file mode 100644 index 7e50606..0000000 --- a/manpages/po4a/fr/lh_source_usb-hdd.en.1.po +++ /dev/null @@ -1,648 +0,0 @@ -# French translations for PACKAGE package -# Copyright (C) 2009 Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# Automatically generated, 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: 2009-03-01 12:49+0100\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, fuzzy, no-wrap -msgid "2009-02-14" -msgstr "2007-11-26" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, fuzzy, no-wrap -msgid "1.0.4" -msgstr "1.0~a38" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "live-helper" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "NOM" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SYNOPSIS" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIPTION" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "VOIR AUSSI" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "I(7)" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -#, fuzzy -msgid "This program is a part of live-helper." -msgstr "Ce programme fait partie de live-helper." - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "HÉBERGEMENT" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -#, fuzzy -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" -"Plus d'informations sur le projet Debian Live peut être trouvée sur " -"EIE et EIE." - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "ANOMALIES" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTEUR" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" -"live-helper a été écrit par Daniel Baumann EIE " -"pour le projet Debian." - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I(1)" -msgstr "" - -# type: TH -#: lh_source_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_SOURCE_USB-HDD" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:5 -msgid "lh_source_usb-hdd - build source usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:8 -#, fuzzy -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_source_usb-hdd.en.1:11 -#, fuzzy -msgid "" -"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds source usb-hdd image." -msgstr "" -"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires " -"à live-helper dans le bon ordre pour effectuer l'étape de construction du " -"binaire." - -# type: Plain text -#: lh_source_usb-hdd.en.1:14 -msgid "" -"lh_source_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/fr/lh_source_usb.en.1.po b/manpages/po4a/fr/lh_source_usb.en.1.po new file mode 100644 index 0000000..7e50606 --- /dev/null +++ b/manpages/po4a/fr/lh_source_usb.en.1.po @@ -0,0 +1,648 @@ +# French translations for PACKAGE package +# Copyright (C) 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# Automatically generated, 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: 2009-03-01 12:49+0100\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, fuzzy, no-wrap +msgid "2009-02-14" +msgstr "2007-11-26" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, fuzzy, no-wrap +msgid "1.0.4" +msgstr "1.0~a38" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "live-helper" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "NOM" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "SYNOPSIS" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIPTION" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "VOIR AUSSI" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "I(7)" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +#, fuzzy +msgid "This program is a part of live-helper." +msgstr "Ce programme fait partie de live-helper." + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "HÉBERGEMENT" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +#, fuzzy +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" +"Plus d'informations sur le projet Debian Live peut être trouvée sur " +"EIE et EIE." + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "ANOMALIES" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTEUR" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" +"live-helper a été écrit par Daniel Baumann EIE " +"pour le projet Debian." + +# type: Plain text +#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 +#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 +#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 +#: lh_source_virtual-hdd.en.1:17 +msgid "I(1)" +msgstr "" + +# type: TH +#: lh_source_usb-hdd.en.1:1 +#, no-wrap +msgid "LH_SOURCE_USB-HDD" +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:5 +msgid "lh_source_usb-hdd - build source usb-hdd image" +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:8 +#, fuzzy +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_source_usb-hdd.en.1:11 +#, fuzzy +msgid "" +"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds source usb-hdd image." +msgstr "" +"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires " +"à live-helper dans le bon ordre pour effectuer l'étape de construction du " +"binaire." + +# type: Plain text +#: lh_source_usb-hdd.en.1:14 +msgid "" +"lh_source_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po4a/pot/lh_binary_usb-hdd.en.1.pot b/manpages/po4a/pot/lh_binary_usb-hdd.en.1.pot deleted file mode 100644 index 2459289..0000000 --- a/manpages/po4a/pot/lh_binary_usb-hdd.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_BINARY_USB-HDD" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:5 -msgid "lh_binary_usb-hdd - build binary usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:8 -msgid "B [I]" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:11 -msgid "" -"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds binary usb-hdd image." -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:14 -msgid "" -"lh_binary_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_usb.en.1.pot b/manpages/po4a/pot/lh_binary_usb.en.1.pot new file mode 100644 index 0000000..2459289 --- /dev/null +++ b/manpages/po4a/pot/lh_binary_usb.en.1.pot @@ -0,0 +1,642 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "2009-02-14" +msgstr "" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "1.0.4" +msgstr "" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 +#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 +#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 +#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 +#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 +#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 +#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 +#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 +#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 +#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 +msgid "I(1)" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +msgid "This program is a part of live-helper." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +# type: TH +#: lh_binary_usb-hdd.en.1:1 +#, no-wrap +msgid "LH_BINARY_USB-HDD" +msgstr "" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:5 +msgid "lh_binary_usb-hdd - build binary usb-hdd image" +msgstr "" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:8 +msgid "B [I]" +msgstr "" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:11 +msgid "" +"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds binary usb-hdd image." +msgstr "" + +# type: Plain text +#: lh_binary_usb-hdd.en.1:14 +msgid "" +"lh_binary_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po4a/pot/lh_source_usb-hdd.en.1.pot b/manpages/po4a/pot/lh_source_usb-hdd.en.1.pot deleted file mode 100644 index 9e9cc00..0000000 --- a/manpages/po4a/pot/lh_source_usb-hdd.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at EIE and in " -"the manual at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at EIE or write " -"a mail to the mailinglist at EIE." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I(1)" -msgstr "" - -# type: TH -#: lh_source_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_SOURCE_USB-HDD" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:5 -msgid "lh_source_usb-hdd - build source usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:8 -msgid "B [I]" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:11 -msgid "" -"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds source usb-hdd image." -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:14 -msgid "" -"lh_source_usb-hdd has no specific options but understands all generic live-" -"helper options. See I(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_usb.en.1.pot b/manpages/po4a/pot/lh_source_usb.en.1.pot new file mode 100644 index 0000000..9e9cc00 --- /dev/null +++ b/manpages/po4a/pot/lh_source_usb.en.1.pot @@ -0,0 +1,636 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-03-01 12:49+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "2009-02-14" +msgstr "" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 +#, no-wrap +msgid "1.0.4" +msgstr "" + +# type: TH +#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 +#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 +#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 +#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 +#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 +#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 +#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 +#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 +#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 +#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 +#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 +#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 +#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 +#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 +#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 +#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 +#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 +#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 +#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 +#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 +#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 +#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 +#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 +#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 +#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 +#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 +#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 +#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 +#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 +#: lh_testroot.en.1:1 live-helper.en.7:1 +#, no-wrap +msgid "live-helper" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 +#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 +#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 +#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 +#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 +#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 +#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 +#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 +#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 +#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 +#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 +#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 +#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 +#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 +#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 +#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 +#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 +#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 +#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 +#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 +#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 +#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 +#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 +#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 +#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 +#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 +#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 +#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 +#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 +#: lh_testroot.en.1:3 live-helper.en.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 +#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 +#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 +#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 +#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 +#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 +#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 +#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 +#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 +#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 +#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 +#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 +#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 +#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 +#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 +#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 +#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 +#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 +#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 +#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 +#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 +#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 +#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 +#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 +#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 +#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 +#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 +#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 +#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 +#: lh_testroot.en.1:6 live-helper.en.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 +#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 +#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 +#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 +#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 +#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 +#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 +#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 +#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 +#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 +#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 +#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 +#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 +#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 +#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 +#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 +#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 +#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 +#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 +#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 +#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 +#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 +#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 +#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 +#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 +#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 +#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 +#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 +#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 +#: lh_testroot.en.1:9 live-helper.en.7:13 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 +#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 +#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 +#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 +#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 +#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 +#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 +#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 +#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 +#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 +#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 +#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 +#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 +#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 +#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 +#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 +#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 +#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 +#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 +#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 +#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 +#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 +#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 +#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 +#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 +#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 +#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 +#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 +#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 +#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 +#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 +#: live-helper.en.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 +#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 +#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 +#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 +#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 +#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 +#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 +#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 +#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 +#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 +#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 +#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 +#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 +#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 +#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 +#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 +#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 +#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 +#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 +#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 +#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 +#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 +#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 +#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 +#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 +#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 +#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 +#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 +#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 +#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 +#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 +#: live-helper.en.7:229 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 +#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 +#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 +#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 +#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 +#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 +#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 +#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 +#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 +#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 +#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 +#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 +#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 +#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 +#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 +#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 +#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 +#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 +#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 +#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 +#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 +#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 +#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 +#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 +#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 +#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 +#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 +#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 +#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 +#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 +#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 +msgid "I(7)" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 +#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 +#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 +#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 +#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 +#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 +#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 +#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 +#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 +#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 +#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 +#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 +#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 +#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 +#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 +#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 +#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 +#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 +#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 +#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 +#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 +#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 +#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 +#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 +#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 +#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 +#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 +#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 +#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 +#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 +#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 +msgid "This program is a part of live-helper." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 +#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 +#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 +#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 +#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 +#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 +#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 +#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 +#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 +#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 +#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 +#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 +#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 +#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 +#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 +#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 +#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 +#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 +#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 +#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 +#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 +#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 +#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 +#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 +#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 +#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 +#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 +#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 +#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 +#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 +#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 +#: live-helper.en.7:232 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 +#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 +#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 +#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 +#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 +#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 +#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 +#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 +#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 +#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 +#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 +#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 +#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 +#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 +#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 +#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 +#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 +#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 +#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 +#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 +#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 +#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 +#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 +#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 +#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 +#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 +#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 +#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 +#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 +#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 +#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 +#: live-helper.en.7:234 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"in the homepage at EIE and in " +"the manual at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 +#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 +#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 +#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 +#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 +#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 +#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 +#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 +#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 +#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 +#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 +#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 +#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 +#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 +#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 +#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 +#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 +#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 +#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 +#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 +#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 +#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 +#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 +#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 +#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 +#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 +#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 +#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 +#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 +#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 +#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 +#: live-helper.en.7:235 +#, no-wrap +msgid "BUGS" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 +#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 +#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 +#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 +#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 +#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 +#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 +#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 +#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 +#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 +#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 +#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 +#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 +#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 +#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 +#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 +#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 +#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 +#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 +#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 +#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 +#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 +#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 +#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 +#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 +#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 +#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 +#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 +#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 +#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 +#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 +#: live-helper.en.7:237 +msgid "" +"Report bugs by submitting a bugreport for the live-helper package in the " +"Debian Bug Tracking System at EIE or write " +"a mail to the mailinglist at EIE." +msgstr "" + +# type: SH +#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 +#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 +#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 +#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 +#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 +#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 +#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 +#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 +#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 +#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 +#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 +#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 +#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 +#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 +#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 +#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 +#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 +#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 +#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 +#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 +#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 +#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 +#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 +#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 +#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 +#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 +#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 +#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 +#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 +#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 +#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 +#: live-helper.en.7:238 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +# type: Plain text +#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 +#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 +#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 +#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 +#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 +#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 +#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 +#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 +#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 +#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 +#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 +#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 +#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 +#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 +#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 +#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 +#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 +#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 +#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 +#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 +#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 +#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 +#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 +#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 +#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 +#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 +#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 +#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 +#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 +#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 +#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 +#: live-helper.en.7:239 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +# type: Plain text +#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 +#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 +#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 +#: lh_source_virtual-hdd.en.1:17 +msgid "I(1)" +msgstr "" + +# type: TH +#: lh_source_usb-hdd.en.1:1 +#, no-wrap +msgid "LH_SOURCE_USB-HDD" +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:5 +msgid "lh_source_usb-hdd - build source usb-hdd image" +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:8 +msgid "B [I]" +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:11 +msgid "" +"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It builds source usb-hdd image." +msgstr "" + +# type: Plain text +#: lh_source_usb-hdd.en.1:14 +msgid "" +"lh_source_usb-hdd has no specific options but understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" -- cgit v1.0