From 9326dc8b01231113d12417c4153a82cd3ab00029 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 1 May 2010 07:39:49 +0200 Subject: Renaming md5sum helpers to checksums. --- helpers/binary | 2 +- helpers/binary_checksums | 73 +++ helpers/binary_md5sum | 73 --- helpers/source | 2 +- helpers/source_checksums | 78 +++ helpers/source_md5sum | 78 --- manpages/lh_binary_checksums.en.1 | 29 ++ manpages/lh_binary_md5sum.en.1 | 29 -- manpages/lh_config.en.1 | 4 +- manpages/lh_source_checksums.en.1 | 29 ++ manpages/lh_source_md5sum.en.1 | 29 -- manpages/live-helper.en.7 | 8 +- manpages/po4a/de/lh_binary_checksums.en.1.po | 659 +++++++++++++++++++++++++ manpages/po4a/de/lh_binary_md5sum.en.1.po | 659 ------------------------- manpages/po4a/de/lh_source_checksums.en.1.po | 654 ++++++++++++++++++++++++ manpages/po4a/de/lh_source_md5sum.en.1.po | 654 ------------------------ manpages/po4a/fr/lh_binary_checksums.en.1.po | 655 ++++++++++++++++++++++++ manpages/po4a/fr/lh_binary_md5sum.en.1.po | 655 ------------------------ manpages/po4a/fr/lh_source_checksums.en.1.po | 648 ++++++++++++++++++++++++ manpages/po4a/fr/lh_source_md5sum.en.1.po | 648 ------------------------ manpages/po4a/pot/lh_binary_checksums.en.1.pot | 642 ++++++++++++++++++++++++ manpages/po4a/pot/lh_binary_md5sum.en.1.pot | 642 ------------------------ manpages/po4a/pot/lh_source_checksums.en.1.pot | 636 ++++++++++++++++++++++++ manpages/po4a/pot/lh_source_md5sum.en.1.pot | 636 ------------------------ 24 files changed, 4111 insertions(+), 4111 deletions(-) create mode 100755 helpers/binary_checksums delete mode 100755 helpers/binary_md5sum create mode 100755 helpers/source_checksums delete mode 100755 helpers/source_md5sum create mode 100644 manpages/lh_binary_checksums.en.1 delete mode 100644 manpages/lh_binary_md5sum.en.1 create mode 100644 manpages/lh_source_checksums.en.1 delete mode 100644 manpages/lh_source_md5sum.en.1 create mode 100644 manpages/po4a/de/lh_binary_checksums.en.1.po delete mode 100644 manpages/po4a/de/lh_binary_md5sum.en.1.po create mode 100644 manpages/po4a/de/lh_source_checksums.en.1.po delete mode 100644 manpages/po4a/de/lh_source_md5sum.en.1.po create mode 100644 manpages/po4a/fr/lh_binary_checksums.en.1.po delete mode 100644 manpages/po4a/fr/lh_binary_md5sum.en.1.po create mode 100644 manpages/po4a/fr/lh_source_checksums.en.1.po delete mode 100644 manpages/po4a/fr/lh_source_md5sum.en.1.po create mode 100644 manpages/po4a/pot/lh_binary_checksums.en.1.pot delete mode 100644 manpages/po4a/pot/lh_binary_md5sum.en.1.pot create mode 100644 manpages/po4a/pot/lh_source_checksums.en.1.pot delete mode 100644 manpages/po4a/pot/lh_source_md5sum.en.1.pot diff --git a/helpers/binary b/helpers/binary index 35c74de..9b15189 100755 --- a/helpers/binary +++ b/helpers/binary @@ -65,7 +65,7 @@ lh binary_win32-loader ${*} lh binary_includes ${*} lh binary_local-includes ${*} lh binary_local-hooks ${*} -lh binary_md5sum ${*} +lh binary_checksums ${*} if [ "${LH_CHROOT_BUILD}" != "true" ] then diff --git a/helpers/binary_checksums b/helpers/binary_checksums new file mode 100755 index 0000000..2c507ad --- /dev/null +++ b/helpers/binary_checksums @@ -0,0 +1,73 @@ +#!/bin/sh + +# lh_binary_checksums(1) - create binary checksums +# Copyright (C) 2006-2010 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 'create binary checksums')" +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_CHECKSUMS}" != "true" ] || [ "${LH_BINARY_IMAGES}" = "virtual-hdd" ] +then + exit 0 +fi + +Echo_message "Begin creating binary md5sum.txt..." + +# Requiring stage file +Require_stagefile .stage/config .stage/bootstrap + +# Checking stage file +Check_stagefile .stage/binary_checksums + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Remove old md5sums +if [ -f binary/md5sum.txt ] +then + rm -f binary/md5sum.txt +fi + +# Calculating md5sums +cd binary +find . -type f \! -path './isolinux/isolinux.bin' \! -path './boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt + +cat > md5sum.txt << EOF +This file contains the list of md5 checksums of all files on this medium. + +You can verify them automatically with the 'integrity-check' boot parameter, +or, manually with: 'md5sum -c md5sum.txt'. + + +EOF + +cat ../md5sum.txt >> md5sum.txt +rm -f ../md5sum.txt + +# File list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list + +cd "${OLDPWD}" + +# Creating stage file +Create_stagefile .stage/binary_checksums diff --git a/helpers/binary_md5sum b/helpers/binary_md5sum deleted file mode 100755 index e9376c0..0000000 --- a/helpers/binary_md5sum +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# lh_binary_md5sum(1) - create binary md5sums -# Copyright (C) 2006-2010 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 'create binary md5sums')" -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_CHECKSUMS}" != "true" ] || [ "${LH_BINARY_IMAGES}" = "virtual-hdd" ] -then - exit 0 -fi - -Echo_message "Begin creating binary md5sum.txt..." - -# Requiring stage file -Require_stagefile .stage/config .stage/bootstrap - -# Checking stage file -Check_stagefile .stage/binary_md5sum - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Remove old md5sums -if [ -f binary/md5sum.txt ] -then - rm -f binary/md5sum.txt -fi - -# Calculating md5sums -cd binary -find . -type f \! -path './isolinux/isolinux.bin' \! -path './boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt - -cat > md5sum.txt << EOF -This file contains the list of md5 checksums of all files on this medium. - -You can verify them automatically with the 'integrity-check' boot parameter, -or, manually with: 'md5sum -c md5sum.txt'. - - -EOF - -cat ../md5sum.txt >> md5sum.txt -rm -f ../md5sum.txt - -# File list -find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list - -cd "${OLDPWD}" - -# Creating stage file -Create_stagefile .stage/binary_md5sum diff --git a/helpers/source b/helpers/source index 512a923..8ba066b 100755 --- a/helpers/source +++ b/helpers/source @@ -38,7 +38,7 @@ lh chroot_sources install ${*} lh source_debian-live ${*} lh source_debian ${*} lh source_disk ${*} -lh source_md5sum ${*} +lh source_checksums ${*} # Building images lh source_iso ${*} diff --git a/helpers/source_checksums b/helpers/source_checksums new file mode 100755 index 0000000..31895db --- /dev/null +++ b/helpers/source_checksums @@ -0,0 +1,78 @@ +#!/bin/sh + +# lh_source_checksums(1) - create source checksumss +# Copyright (C) 2006-2010 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 'create source checksums')" +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 [ "${LH_CHECKSUMS}" != "true" ] +then + exit 0 +fi + +Echo_message "Begin creating source md5sum.txt..." + +# Requiring stage file +Require_stagefile .stage/config .stage/source_debian + +# Checking stage file +Check_stagefile .stage/source_checksums + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Remove old md5sums +if [ -f source/md5sum.txt ] +then + rm -f source/md5sum.txt +fi + +# Calculating md5sums +cd source +find . -type f -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt + +cat > md5sum.txt << EOF +This file contains the list of md5 checksums of all files on this medium. + +You can verify them automatically with the 'integrity-check' boot parameter, +or, manually with: 'md5sum -c md5sum.txt'. + + +EOF + +cat ../md5sum.txt >> md5sum.txt +rm -f ../md5sum.txt + +# File list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list + +cd "${OLDPWD}" + +# Creating stage file +Create_stagefile .stage/source_checksums diff --git a/helpers/source_md5sum b/helpers/source_md5sum deleted file mode 100755 index 0a543e7..0000000 --- a/helpers/source_md5sum +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# lh_source_md5sum(1) - create source md5sums -# Copyright (C) 2006-2010 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 'create source md5sums')" -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 [ "${LH_CHECKSUMS}" != "true" ] -then - exit 0 -fi - -Echo_message "Begin creating source md5sum.txt..." - -# Requiring stage file -Require_stagefile .stage/config .stage/source_debian - -# Checking stage file -Check_stagefile .stage/source_md5sum - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Remove old md5sums -if [ -f source/md5sum.txt ] -then - rm -f source/md5sum.txt -fi - -# Calculating md5sums -cd source -find . -type f -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt - -cat > md5sum.txt << EOF -This file contains the list of md5 checksums of all files on this medium. - -You can verify them automatically with the 'integrity-check' boot parameter, -or, manually with: 'md5sum -c md5sum.txt'. - - -EOF - -cat ../md5sum.txt >> md5sum.txt -rm -f ../md5sum.txt - -# File list -find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list - -cd "${OLDPWD}" - -# Creating stage file -Create_stagefile .stage/source_md5sum diff --git a/manpages/lh_binary_checksums.en.1 b/manpages/lh_binary_checksums.en.1 new file mode 100644 index 0000000..96c6c63 --- /dev/null +++ b/manpages/lh_binary_checksums.en.1 @@ -0,0 +1,29 @@ +.TH LH_BINARY_CHECKSUMS 1 "2009\-06\-14" "1.0.5" "live\-helper" + +.SH NAME +lh_binary_checksums \- create binary checksums + +.SH SYNOPSIS +\fBlh_binary_checksums\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +lh_binary_checksums is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It creates binary checksums (md5, sha1, and/or sha256). + +.SH OPTIONS +lh_binary_checksums 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://live.debian.net/\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_md5sum.en.1 b/manpages/lh_binary_md5sum.en.1 deleted file mode 100644 index e8304f2..0000000 --- a/manpages/lh_binary_md5sum.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_MD5SUM 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_md5sum \- create binary md5sums - -.SH SYNOPSIS -\fBlh_binary_md5sum\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_md5sum is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It creates binary md5sums. - -.SH OPTIONS -lh_binary_md5sum 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://live.debian.net/\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_config.en.1 b/manpages/lh_config.en.1 index b4c0ef9..1d5985d 100644 --- a/manpages/lh_config.en.1 +++ b/manpages/lh_config.en.1 @@ -258,8 +258,8 @@ defines if downloaded package indices and lists should be cached which is false defines if downloaded packages files should be cached which is true by default. Disabling it does save space consumtion in your build directory, but remember that you will cause much unnecessary traffic if you do a couple of rebuilds. In general you should always leave it true, however, in some particular rare build setups, it can be faster to refetch packages from the local network mirror rather than to utilize the local disk. .IP "\fB\-\-cache\-stages\fR true|false|\fISTAGE\fR|""\fISTAGES\fR""" 4 sets which stages should be cached. By default set to bootstrap. As an exception to the normal stage names, also rootfs can be used here which does only cache the generated root filesystem in filesystem.{dir,ext*,squashfs}. This is useful during development if you want to rebuild the binary stage but not regenerate the root filesystem all the time. -.IP "\fB\-\-checksums\fR true|false" 4 -defines if the binary image should contain a file called md5sums.txt that lists all files on the image together with their md5 checksums. This in turn can be used by live-initramfs' built-in integrity-check to verify the medium if specified at boot prompt. In general, this should not be false and is an important feature of live system released to the public. However, during development of very big images it can save some time by not calculating the checksums. +.IP "\fB\-\-checksums\fR true|false|md5|sha1|sha256" 4 +defines if the binary image should contain a file called md5sums.txt, sha1sums.txt or sha256sums.txt. These lists all files on the image together with their checksums. This in turn can be used by live-initramfs' built-in integrity-check to verify the medium if specified at boot prompt. In general, this should not be false and is an important feature of live system released to the public. However, during development of very big images it can save some time by not calculating the checksums. .IP "\fB\-\-chroot\-build\fR true|false" 4 defines whetever live-helper should use the tools from within the chroot to build the binary image or not by using and including the host systems tools. This is a very dangerous option, using the tools of the host system can lead to tainted and even non-bootable images if the host systems version of the required tools (mainly these are the bootloaders such as syslinux, grub and yaboot, and the auxilliary tools such as dosfstools, genisoimage, squashfs-tools and others) do not \fBexactely\fR match what is present at build-time in the target distribution. Never do disable this option unless you are \fBexactely\fR sure what you are doing and have \fBcompletely\fI understood its consequences. .IP "\fB\-\-chroot\-filesystem\fR ext2|ext3|squashfs|plain|jffs2" 4 diff --git a/manpages/lh_source_checksums.en.1 b/manpages/lh_source_checksums.en.1 new file mode 100644 index 0000000..5985c47 --- /dev/null +++ b/manpages/lh_source_checksums.en.1 @@ -0,0 +1,29 @@ +.TH LH_SOURCE_CHECKSUMS 1 "2009\-06\-14" "1.0.5" "live\-helper" + +.SH NAME +lh_source_checksums \- create source checksums + +.SH SYNOPSIS +\fBlh_source_checksums\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +lh_source_checksums is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It creates source checksums (md5, sha1, and/or sha256). + +.SH OPTIONS +lh_source_checksums sources 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://live.debian.net/\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_md5sum.en.1 b/manpages/lh_source_md5sum.en.1 deleted file mode 100644 index ac6d295..0000000 --- a/manpages/lh_source_md5sum.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_MD5SUM 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_md5sum \- create source md5sum - -.SH SYNOPSIS -\fBlh_source_md5sum\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_md5sum is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It creates source md5sum. - -.SH OPTIONS -lh_source_md5sum sources 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://live.debian.net/\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 f119dfa..32365dd 100644 --- a/manpages/live-helper.en.7 +++ b/manpages/live-helper.en.7 @@ -175,8 +175,8 @@ copy files into binary install local packages lists into binary .IP "\fBlh_binary_manifest\fR(1)" 4 create manifest -.IP "\fBlh_binary_md5sum\fR(1)" 4 -create binary md5sums +.IP "\fBlh_binary_checksums\fR(1)" 4 +create binary checksums (md5, sha1, and/or sha256) .IP "\fBlh_binary_memtest\fR(1)" 4 installs a memtest into binary .IP "\fBlh_binary_net\fR(1)" 4 @@ -206,8 +206,8 @@ copy debian-live config into source install disk information into source .IP "\fBlh_source_iso\fR(1)" 4 build iso source image -.IP "\fBlh_source_md5sum\fR(1)" 4 -create source md5sum +.IP "\fBlh_source_checksums\fR(1)" 4 +create source checksums (md5, sha1, and/or sha256) .IP "\fBlh_source_net\fR(1)" 4 build source net image .IP "\fBlh_source_tar\fR(1)" 4 diff --git a/manpages/po4a/de/lh_binary_checksums.en.1.po b/manpages/po4a/de/lh_binary_checksums.en.1.po new file mode 100644 index 0000000..09562ae --- /dev/null +++ b/manpages/po4a/de/lh_binary_checksums.en.1.po @@ -0,0 +1,659 @@ +# 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_md5sum +# +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_md5sum.en.1:1 +#, no-wrap +msgid "LH_BINARY_MD5SUM" +msgstr "LH_BINARY_MD5SUM" + +# type: Plain text +#: lh_binary_md5sum.en.1:5 +msgid "lh_binary_md5sum - create binary md5sums" +msgstr "lh_binary_md5sum - Programm-Md5sums erstellen" + +# type: Plain text +#: lh_binary_md5sum.en.1:8 +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_binary_md5sum.en.1:11 +msgid "" +"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates binary md5sums." +msgstr "" +"lh_binary_md5sum ist ein Befehl niedriger Stufe (Klempnerei) von Live-Helper, " +"der Debian-Live-Werkzeugsammlung. Es erstellt Programm-Md5sums." + +# type: Plain text +#: lh_binary_md5sum.en.1:14 +msgid "" +"lh_binary_md5sum 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_md5sum 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_md5sum.en.1.po b/manpages/po4a/de/lh_binary_md5sum.en.1.po deleted file mode 100644 index 09562ae..0000000 --- a/manpages/po4a/de/lh_binary_md5sum.en.1.po +++ /dev/null @@ -1,659 +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_md5sum -# -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_md5sum.en.1:1 -#, no-wrap -msgid "LH_BINARY_MD5SUM" -msgstr "LH_BINARY_MD5SUM" - -# type: Plain text -#: lh_binary_md5sum.en.1:5 -msgid "lh_binary_md5sum - create binary md5sums" -msgstr "lh_binary_md5sum - Programm-Md5sums erstellen" - -# type: Plain text -#: lh_binary_md5sum.en.1:8 -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_binary_md5sum.en.1:11 -msgid "" -"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates binary md5sums." -msgstr "" -"lh_binary_md5sum ist ein Befehl niedriger Stufe (Klempnerei) von Live-Helper, " -"der Debian-Live-Werkzeugsammlung. Es erstellt Programm-Md5sums." - -# type: Plain text -#: lh_binary_md5sum.en.1:14 -msgid "" -"lh_binary_md5sum 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_md5sum 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_checksums.en.1.po b/manpages/po4a/de/lh_source_checksums.en.1.po new file mode 100644 index 0000000..7455a42 --- /dev/null +++ b/manpages/po4a/de/lh_source_checksums.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_md5sum +# +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_md5sum.en.1:1 +#, no-wrap +msgid "LH_SOURCE_MD5SUM" +msgstr "LH_SOURCE_MD5SUM" + +# type: Plain text +#: lh_source_md5sum.en.1:5 +msgid "lh_source_md5sum - create source md5sum" +msgstr "lh_source_md5sum - Quellen-Md5sum erzeugen" + +# type: Plain text +#: lh_source_md5sum.en.1:8 +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_source_md5sum.en.1:11 +msgid "" +"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates source md5sum." +msgstr "" +"lh_source_md5sum ist ein Befehl niedriger Stufe (Klempnerei) von " +"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erzeugt Md5sum von " +"Quellen." + +# type: Plain text +#: lh_source_md5sum.en.1:14 +msgid "" +"lh_source_md5sum sources 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_md5sum 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_md5sum.en.1.po b/manpages/po4a/de/lh_source_md5sum.en.1.po deleted file mode 100644 index 7455a42..0000000 --- a/manpages/po4a/de/lh_source_md5sum.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_md5sum -# -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_md5sum.en.1:1 -#, no-wrap -msgid "LH_SOURCE_MD5SUM" -msgstr "LH_SOURCE_MD5SUM" - -# type: Plain text -#: lh_source_md5sum.en.1:5 -msgid "lh_source_md5sum - create source md5sum" -msgstr "lh_source_md5sum - Quellen-Md5sum erzeugen" - -# type: Plain text -#: lh_source_md5sum.en.1:8 -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_source_md5sum.en.1:11 -msgid "" -"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates source md5sum." -msgstr "" -"lh_source_md5sum ist ein Befehl niedriger Stufe (Klempnerei) von " -"Live-Helper, der Debian-Live-Werkzeugsammlung. Es erzeugt Md5sum von " -"Quellen." - -# type: Plain text -#: lh_source_md5sum.en.1:14 -msgid "" -"lh_source_md5sum sources 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_md5sum 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_checksums.en.1.po b/manpages/po4a/fr/lh_binary_checksums.en.1.po new file mode 100644 index 0000000..7a24906 --- /dev/null +++ b/manpages/po4a/fr/lh_binary_checksums.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_md5sum.en.1:1 +#, fuzzy, no-wrap +msgid "LH_BINARY_MD5SUM" +msgstr "LH_BINARY" + +# type: Plain text +#: lh_binary_md5sum.en.1:5 +msgid "lh_binary_md5sum - create binary md5sums" +msgstr "" + +# type: Plain text +#: lh_binary_md5sum.en.1:8 +#, fuzzy +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_binary_md5sum.en.1:11 +#, fuzzy +msgid "" +"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates binary md5sums." +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_md5sum.en.1:14 +msgid "" +"lh_binary_md5sum 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_md5sum.en.1.po b/manpages/po4a/fr/lh_binary_md5sum.en.1.po deleted file mode 100644 index 7a24906..0000000 --- a/manpages/po4a/fr/lh_binary_md5sum.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_md5sum.en.1:1 -#, fuzzy, no-wrap -msgid "LH_BINARY_MD5SUM" -msgstr "LH_BINARY" - -# type: Plain text -#: lh_binary_md5sum.en.1:5 -msgid "lh_binary_md5sum - create binary md5sums" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:8 -#, fuzzy -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_binary_md5sum.en.1:11 -#, fuzzy -msgid "" -"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates binary md5sums." -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_md5sum.en.1:14 -msgid "" -"lh_binary_md5sum 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_checksums.en.1.po b/manpages/po4a/fr/lh_source_checksums.en.1.po new file mode 100644 index 0000000..be9a87e --- /dev/null +++ b/manpages/po4a/fr/lh_source_checksums.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_md5sum.en.1:1 +#, no-wrap +msgid "LH_SOURCE_MD5SUM" +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:5 +msgid "lh_source_md5sum - create source md5sum" +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:8 +#, fuzzy +msgid "B [I]" +msgstr "B [I]" + +# type: Plain text +#: lh_source_md5sum.en.1:11 +#, fuzzy +msgid "" +"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates source md5sum." +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_md5sum.en.1:14 +msgid "" +"lh_source_md5sum sources 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_md5sum.en.1.po b/manpages/po4a/fr/lh_source_md5sum.en.1.po deleted file mode 100644 index be9a87e..0000000 --- a/manpages/po4a/fr/lh_source_md5sum.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_md5sum.en.1:1 -#, no-wrap -msgid "LH_SOURCE_MD5SUM" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:5 -msgid "lh_source_md5sum - create source md5sum" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:8 -#, fuzzy -msgid "B [I]" -msgstr "B [I]" - -# type: Plain text -#: lh_source_md5sum.en.1:11 -#, fuzzy -msgid "" -"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates source md5sum." -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_md5sum.en.1:14 -msgid "" -"lh_source_md5sum sources 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_checksums.en.1.pot b/manpages/po4a/pot/lh_binary_checksums.en.1.pot new file mode 100644 index 0000000..968f29a --- /dev/null +++ b/manpages/po4a/pot/lh_binary_checksums.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_md5sum.en.1:1 +#, no-wrap +msgid "LH_BINARY_MD5SUM" +msgstr "" + +# type: Plain text +#: lh_binary_md5sum.en.1:5 +msgid "lh_binary_md5sum - create binary md5sums" +msgstr "" + +# type: Plain text +#: lh_binary_md5sum.en.1:8 +msgid "B [I]" +msgstr "" + +# type: Plain text +#: lh_binary_md5sum.en.1:11 +msgid "" +"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates binary md5sums." +msgstr "" + +# type: Plain text +#: lh_binary_md5sum.en.1:14 +msgid "" +"lh_binary_md5sum 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_md5sum.en.1.pot b/manpages/po4a/pot/lh_binary_md5sum.en.1.pot deleted file mode 100644 index 968f29a..0000000 --- a/manpages/po4a/pot/lh_binary_md5sum.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_md5sum.en.1:1 -#, no-wrap -msgid "LH_BINARY_MD5SUM" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:5 -msgid "lh_binary_md5sum - create binary md5sums" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:8 -msgid "B [I]" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:11 -msgid "" -"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates binary md5sums." -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:14 -msgid "" -"lh_binary_md5sum 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_checksums.en.1.pot b/manpages/po4a/pot/lh_source_checksums.en.1.pot new file mode 100644 index 0000000..0bd57bd --- /dev/null +++ b/manpages/po4a/pot/lh_source_checksums.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_md5sum.en.1:1 +#, no-wrap +msgid "LH_SOURCE_MD5SUM" +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:5 +msgid "lh_source_md5sum - create source md5sum" +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:8 +msgid "B [I]" +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:11 +msgid "" +"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " +"Debian Live tool suite. It creates source md5sum." +msgstr "" + +# type: Plain text +#: lh_source_md5sum.en.1:14 +msgid "" +"lh_source_md5sum sources 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_md5sum.en.1.pot b/manpages/po4a/pot/lh_source_md5sum.en.1.pot deleted file mode 100644 index 0bd57bd..0000000 --- a/manpages/po4a/pot/lh_source_md5sum.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_md5sum.en.1:1 -#, no-wrap -msgid "LH_SOURCE_MD5SUM" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:5 -msgid "lh_source_md5sum - create source md5sum" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:8 -msgid "B [I]" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:11 -msgid "" -"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates source md5sum." -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:14 -msgid "" -"lh_source_md5sum sources 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